Files
GDevelop/GDevelop.js/types/gdexpressioncompletiondescription.js
T

20 lines
609 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;
static Text: 4;
getCompletionKind(): ExpressionCompletionDescription_CompletionKind;
getType(): string;
getPrefix(): string;
getObjectName(): string;
getBehaviorName(): string;
isExact(): boolean;
isLastParameter(): boolean;
getReplacementStartPosition(): number;
getReplacementEndPosition(): number;
getParameterMetadata(): gdParameterMetadata;
delete(): void;
ptr: number;
};