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

@ -7,13 +7,13 @@ Returns a new state with a dynamically animated value of the source.
- ### Type
```lua
type Animatable = number | CFrame | Color3 | UDim | UDim2 | Vector2 | Vector3
function spring<T>(
source: () -> T & Animatable,
period: number = 1,
damping_ratio: number = 1
): () -> T
type Animatable = number | CFrame | Color3 | UDim | UDim2 | Vector2 | Vector3
```
- ### Details