mirror of
https://github.com/Heretek-AI/GDevelop.git
synced 2026-08-25 12:23:58 -04:00
a996c5413f
This makes autosave 70% faster, saving a project 30% faster, preview slighlty faster. - Switch to RapidJSON for serialization inside the Core. - Avoid extra pair of JSON.parse/JSON.stringify for autosaves - Fix float used instead of double in the SerializerElement/Value JS bindings
14 lines
341 B
JavaScript
14 lines
341 B
JavaScript
// Automatically generated by GDevelop.js/scripts/generate-types.js
|
|
declare class gdSerializerValue {
|
|
getBool(): boolean;
|
|
getString(): string;
|
|
getInt(): number;
|
|
getDouble(): number;
|
|
getRawString(): string;
|
|
isBoolean(): boolean;
|
|
isString(): boolean;
|
|
isInt(): boolean;
|
|
isDouble(): boolean;
|
|
delete(): void;
|
|
ptr: number;
|
|
}; |