Files
GDevelop/GDevelop.js/types/gdabstractfilesystemjs.js
D8H 9b4151f64c Add a button to export all the objetcs of a scene to submit them to the asset store (#4848)
* The dialog can be reached from the hidden drop-down menu of "Scene objects".
2024-01-05 11:09:27 +01:00

18 lines
619 B
JavaScript

// Automatically generated by GDevelop.js/scripts/generate-types.js
declare class gdAbstractFileSystemJS extends gdAbstractFileSystem {
constructor(): void;
mkDir(dir: string): void;
dirExists(dir: string): void;
clearDir(dir: string): void;
getTempDir(): string;
fileNameFrom(dir: string): string;
dirNameFrom(dir: string): string;
isAbsolute(fn: string): boolean;
copyFile(src: string, dest: string): void;
writeToFile(fn: string, content: string): void;
readFile(fn: string): string;
readDir(dir: string): gdVectorString;
fileExists(fn: string): boolean;
delete(): void;
ptr: number;
};