Formatting fixes

This commit is contained in:
Lewin Kelly 2023-10-15 16:30:29 +01:00
parent 2c9ebeecec
commit 65e01476e2
1 changed files with 2 additions and 0 deletions

View File

@ -7953,6 +7953,7 @@ end
declare class PluginManager extends Instance declare class PluginManager extends Instance
function ExportPlace(self, filePath: string?): nil function ExportPlace(self, filePath: string?): nil
function ExportSelection(self, filePath: string?): nil function ExportSelection(self, filePath: string?): nil
function CreatePlugin(self): Plugin
end end
declare class PluginManagerInterface extends Instance declare class PluginManagerInterface extends Instance
@ -10278,4 +10279,5 @@ declare function loadfile(file: string): any
declare function LoadLibrary(libraryName: string): { any } declare function LoadLibrary(libraryName: string): { any }
declare function settings(): GlobalSettings declare function settings(): GlobalSettings
declare function UserSettings(): UserSettings declare function UserSettings(): UserSettings
declare function PluginManager(): PluginManager
declare function ypcall(f: () -> any, ...: any): (boolean, any) declare function ypcall(f: () -> any, ...: any): (boolean, any)