Add property/type for plugin info in ZeppelinPlugin
This commit is contained in:
parent
357687654a
commit
404039e196
1 changed files with 7 additions and 0 deletions
|
@ -21,7 +21,14 @@ import { mergeConfig } from "knub/dist/configUtils";
|
|||
|
||||
const SLOW_RESOLVE_THRESHOLD = 1500;
|
||||
|
||||
export interface PluginInfo {
|
||||
name: string;
|
||||
description?: string;
|
||||
}
|
||||
|
||||
export class ZeppelinPlugin<TConfig extends {} = IBasePluginConfig> extends Plugin<TConfig> {
|
||||
public static pluginInfo: PluginInfo;
|
||||
|
||||
protected static configSchema: t.TypeC<any>;
|
||||
public static dependencies = [];
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue