Modification of type definitions and index for doc

This commit is contained in:
Jahames 2023-08-07 22:25:46 -05:00
parent f0916f71c5
commit 2a3e60581f
5 changed files with 33 additions and 12 deletions

View file

@ -9,10 +9,11 @@ Creates a new UI element, applying any given properties.
- ### Type
```lua
function create(class: string): (Properties) -> Instance
function create(instance: Instace): (Properties) -> Instance
type Properties = Map<string | number, any>
function create(class: string): (Properties) -> Instance
function create(instance: Instance): (Properties) -> Instance
type Properties = Map<string|number, any>
```
- ### Details