Files
GDevelop/GDevelop.js/types/gdeffectmetadata.js
T
Florian Rival 2ca593ba2b Add automatically generated types for GDevelop.js (#1800)
Don't show in changelog
2020-06-09 22:02:18 +01:00

15 lines
558 B
JavaScript

// Automatically generated by GDevelop.js/scripts/generate-types.js
declare class gdEffectMetadata {
setFullName(fullName: string): gdEffectMetadata;
setDescription(description: string): gdEffectMetadata;
setHelpPath(helpPath: string): gdEffectMetadata;
setIncludeFile(includeFile: string): gdEffectMetadata;
addIncludeFile(includeFile: string): gdEffectMetadata;
getType(): string;
getFullName(): string;
getDescription(): string;
getHelpPath(): string;
getProperties(): gdMapStringPropertyDescriptor;
delete(): void;
ptr: number;
};