mirror of
https://github.com/Heretek-AI/GDevelop.git
synced 2026-07-21 09:35:27 -04:00
28 lines
910 B
JavaScript
28 lines
910 B
JavaScript
// Automatically generated by GDevelop.js/scripts/generate-types.js
|
|
declare class gdExpressionCompletionDescription {
|
|
static Object: 0;
|
|
static BehaviorWithPrefix: 1;
|
|
static ExpressionWithPrefix: 2;
|
|
static Variable: 3;
|
|
static TextWithPrefix: 4;
|
|
static Property: 5;
|
|
static Parameter: 6;
|
|
getCompletionKind(): ExpressionCompletionDescription_CompletionKind;
|
|
getType(): string;
|
|
getVariableType(): Variable_Type;
|
|
getVariableScope(): VariablesContainer_SourceType;
|
|
getPrefix(): string;
|
|
getCompletion(): string;
|
|
getObjectName(): string;
|
|
getBehaviorName(): string;
|
|
isExact(): boolean;
|
|
isLastParameter(): boolean;
|
|
getReplacementStartPosition(): number;
|
|
getReplacementEndPosition(): number;
|
|
getParameterMetadata(): gdParameterMetadata;
|
|
hasObjectConfiguration(): boolean;
|
|
getObjectConfiguration(): gdObjectConfiguration;
|
|
toString(): string;
|
|
delete(): void;
|
|
ptr: number;
|
|
}; |