mirror of
https://github.com/EsotericSoftware/spine-runtimes.git
synced 2026-02-04 14:24:53 +08:00
10 lines
369 B
TypeScript
10 lines
369 B
TypeScript
|
|
type DictionaryValueType = string | number;
|
|
|
|
/** Represents the Dictionary object.
|
|
* @see {@link https://www.construct.net/make-games/manuals/construct-3/scripting/scripting-reference/plugin-interfaces/dictionary | IDictionaryInstance documentation } */
|
|
declare class IDictionaryInstance extends IWorldInstance
|
|
{
|
|
getDataMap(): Map<string, DictionaryValueType>;
|
|
}
|