summaryrefslogtreecommitdiff
path: root/frontend/src/plugin.ts
blob: ca36e75dd2ec352cfe44a2f8b357c5524d8674cb (plain)
1
2
3
4
5
6
export interface Plugin {
  name: string;
  icon: JSX.Element;
  content?: JSX.Element;
  onDismount?(): void;
}