core: remove usage of explicit type parameters for BackstagePlugin

Signed-off-by: Patrik Oldsberg <poldsberg@gmail.com>
This commit is contained in:
Patrik Oldsberg
2022-07-12 10:19:21 +02:00
parent 1c2fed4239
commit 881fc75a75
10 changed files with 27 additions and 23 deletions
+1 -1
View File
@@ -74,7 +74,7 @@ The extension type is a simple one:
```ts
export type Extension<T> = {
expose(plugin: BackstagePlugin<any, any>): T;
expose(plugin: BackstagePlugin): T;
};
```