mirror of
https://github.com/EsotericSoftware/spine-runtimes.git
synced 2026-02-15 03:21:35 +08:00
14 lines
328 B
TypeScript
14 lines
328 B
TypeScript
|
|
type EditorContainerSelectMode = "normal" | "all" | "wrap";
|
|
|
|
declare namespace SDK {
|
|
class IContainer {
|
|
IsActive(): boolean;
|
|
|
|
GetMembers(): SDK.IObjectType[];
|
|
RemoveObjectType(iObjectType: SDK.IObjectType): void;
|
|
|
|
SetSelectMode(mode: EditorContainerSelectMode): void;
|
|
GetSelectMode(): EditorContainerSelectMode;
|
|
}
|
|
} |