mirror of
https://github.com/EsotericSoftware/spine-runtimes.git
synced 2026-02-04 14:24:53 +08:00
13 lines
403 B
TypeScript
13 lines
403 B
TypeScript
|
|
/** Represents the JSON object.
|
|
* @see {@link https://www.construct.net/make-games/manuals/construct-3/scripting/scripting-reference/plugin-interfaces/json | IJSONInstance documentation } */
|
|
declare class IJSONInstance extends IWorldInstance
|
|
{
|
|
getJsonDataCopy(): any;
|
|
setJsonDataCopy(o: any): void;
|
|
setJsonString(str: string): void;
|
|
|
|
toCompactString(): string;
|
|
toBeautifiedString(): string;
|
|
}
|