Davide Tantillo 50e8104e7c c3 backup
2025-10-14 12:08:58 +02:00

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;
}
}