Files
GDevelop/GDevelop.js/types/gdexpressioncompletiondescription.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
434 B
JavaScript

// Automatically generated by GDevelop.js/scripts/generate-types.js
declare class gdExpressionCompletionDescription {
static Object: 0;
static Behavior: 1;
static Expression: 2;
static Variable: 3;
getCompletionKind(): ExpressionCompletionDescription_CompletionKind;
getType(): string;
getPrefix(): string;
getObjectName(): string;
getBehaviorName(): string;
isExact(): boolean;
delete(): void;
ptr: number;
};