mirror of
https://github.com/EsotericSoftware/spine-runtimes.git
synced 2026-02-13 18:48:44 +08:00
15 lines
391 B
TypeScript
15 lines
391 B
TypeScript
declare namespace SDK {
|
|
class IObjectInstance {
|
|
GetProject(): SDK.IProject;
|
|
GetObjectType(): SDK.IObjectType;
|
|
|
|
GetUID(): number;
|
|
|
|
SetPropertyValue(id: string, value: EditorPropertyValueType): void;
|
|
GetPropertyValue(id: string): EditorPropertyValueType;
|
|
|
|
GetTimelinePropertyValue(id: string): EditorPropertyValueType;
|
|
|
|
GetExternalSdkInstance(): SDK.IInstanceBase | null;
|
|
}
|
|
} |