mirror of
https://github.com/ZeppelinBot/Zeppelin.git
synced 2025-03-18 15:00:00 +00:00
7 lines
244 B
TypeScript
7 lines
244 B
TypeScript
import { ZeppelinPluginClass } from "./ZeppelinPluginClass";
|
|
import { ZeppelinPluginBlueprint } from "./ZeppelinPluginBlueprint";
|
|
|
|
// prettier-ignore
|
|
export type ZeppelinPlugin =
|
|
| typeof ZeppelinPluginClass
|
|
| ZeppelinPluginBlueprint<any>;
|