mirror of
https://github.com/EsotericSoftware/spine-runtimes.git
synced 2026-02-14 19:11:36 +08:00
15 lines
200 B
TypeScript
15 lines
200 B
TypeScript
|
|
|
|
declare namespace SDK {
|
|
class IPluginBase {
|
|
|
|
constructor(id: string);
|
|
|
|
_info: SDK.IPluginInfo;
|
|
|
|
Release(): void;
|
|
|
|
static Register(id: string, class_: new () => SDK.IPluginBase): void;
|
|
}
|
|
}
|