diff --git a/src/init.luau b/src/init.luau index a834643be..64785f3aa 100644 --- a/src/init.luau +++ b/src/init.luau @@ -9,6 +9,8 @@ local task = nil -- Disable usage of Roblox's task scheduler local Types = require(script.Types) local External = require(script.External) +type Fusion = Types.Fusion + export type Animatable = Types.Animatable export type UsedAs = Types.UsedAs export type Child = Types.Child @@ -18,7 +20,7 @@ export type GraphObject = Types.GraphObject export type For = Types.For export type Observer = Types.Observer export type PropertyTable = Types.PropertyTable -export type Scope = Types.Scope +export type Scope = Types.Scope export type ScopedObject = Types.ScopedObject export type SpecialKey = Types.SpecialKey export type Spring = Types.Spring @@ -36,7 +38,7 @@ do External.setExternalProvider(RobloxExternal) end -local Fusion: Types.Fusion = table.freeze { +local Fusion: Fusion = table.freeze { -- General version = {major = 0, minor = 3, isRelease = false}, Contextual = require(script.Utility.Contextual),