Files
GDevelop/GDevelop.js/types/gdversionwrapper.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

14 lines
377 B
JavaScript

// Automatically generated by GDevelop.js/scripts/generate-types.js
declare class gdVersionWrapper {
static major(): number;
static minor(): number;
static build(): number;
static revision(): number;
static fullString(): string;
static status(): string;
static year(): string;
static month(): string;
static date(): string;
delete(): void;
ptr: number;
};