Davide Tantillo 93c56d08d0 c3 backup
2025-11-03 15:16:29 +01:00

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