Files
GDevelop/GDevelop.js/types/gdmapstringserializervalue.js
Florian Rival a996c5413f Improve speed of auto-save/save/load of projects
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
2021-03-13 21:34:53 +00:00

11 lines
365 B
JavaScript

// Automatically generated by GDevelop.js/scripts/generate-types.js
declare class gdMapStringSerializerValue {
constructor(): void;
getOrCreate(name: string): gdSerializerValue;
get(name: string): gdSerializerValue;
set(name: string, prop: gdSerializerValue): void;
has(name: string): boolean;
keys(): gdVectorString;
delete(): void;
ptr: number;
};