From 20e2c55278802614163689ef9667264ff3aa0d7b Mon Sep 17 00:00:00 2001 From: Jonas Dellinger Date: Fri, 22 Apr 2022 23:12:52 +0200 Subject: [PATCH] Rename tab to icon and panel to content --- src/plugin.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/plugin.ts b/src/plugin.ts index 879a46a..a8dad3a 100644 --- a/src/plugin.ts +++ b/src/plugin.ts @@ -1,7 +1,7 @@ export interface Plugin { title: JSX.Element; - tab: JSX.Element; - panel: JSX.Element; + icon: JSX.Element; + content: JSX.Element; onDismount?(): void; }