8 lines
239 B
TypeScript
8 lines
239 B
TypeScript
![]() |
import { ZeppelinPluginClass } from "./ZeppelinPluginClass";
|
||
|
import { ZeppelinPluginBlueprint } from "./ZeppelinPluginBlueprint";
|
||
|
|
||
|
// prettier-ignore
|
||
|
export type ZeppelinPlugin =
|
||
|
| typeof ZeppelinPluginClass
|
||
|
| ZeppelinPluginBlueprint;
|