mirror of
https://github.com/EsotericSoftware/spine-runtimes.git
synced 2026-02-04 14:24:53 +08:00
10 lines
323 B
TypeScript
10 lines
323 B
TypeScript
|
|
/** SDK base class for a plugin.
|
|
* @see {@link https://www.construct.net/en/make-games/manuals/construct-3/scripting/scripting-reference/addon-sdk-interfaces/isdkbehaviorbase | ISDKPluginBase documentation } */
|
|
declare class ISDKPluginBase_ extends IPlugin_
|
|
{
|
|
|
|
}
|
|
|
|
declare var ISDKPluginBase: typeof ISDKPluginBase_;
|