From 1ce15d261f4726a2f8bdaff7c8a98497f2622969 Mon Sep 17 00:00:00 2001 From: AAGaming Date: Sun, 19 Jun 2022 11:39:35 -0400 Subject: [PATCH] fix(plugin): correct return type on injectCssIntoTab --- src/plugin.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugin.tsx b/src/plugin.tsx index 7d9d020..21f156b 100644 --- a/src/plugin.tsx +++ b/src/plugin.tsx @@ -31,7 +31,7 @@ export interface ServerAPI { callServerMethod(methodName: string, args: TArgs): Promise>; fetchNoCors(url: string, request: RequestInfo): Promise>; executeInTab(tab: string, runAsync: boolean, code: string): Promise; - injectCssIntoTab(tab: string, style: string): Promise>; + injectCssIntoTab(tab: string, style: string): Promise>; removeCssFromTab(tab: string, cssId: string): Promise; }