mirror of
https://github.com/factorgroup/nightmarket.git
synced 2026-01-13 15:38:01 -05:00
16 lines
356 B
TypeScript
16 lines
356 B
TypeScript
declare class PluginTemplate implements DFPlugin {
|
|
constructor();
|
|
/**
|
|
* Called when plugin is launched with the "run" button.
|
|
*/
|
|
render(container: HTMLDivElement): Promise<void>;
|
|
/**
|
|
* Called when plugin modal is closed.
|
|
*/
|
|
destroy(): void;
|
|
}
|
|
/**
|
|
* And don't forget to export it!
|
|
*/
|
|
export default PluginTemplate;
|