summaryrefslogtreecommitdiff
path: root/frontend/src/plugin.ts
blob: fa1bb28a3853b73ab51cf83550199ad22783fdd1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
export interface Plugin {
  name: string;
  version?: string;
  icon: JSX.Element;
  content?: JSX.Element;
  onDismount?(): void;
  alwaysRender?: boolean;
  titleView?: JSX.Element;
}

export enum InstallType {
  INSTALL,
  REINSTALL,
  UPDATE,
}