We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a45f1d1 commit bcea9baCopy full SHA for bcea9ba
test.ts
@@ -1,13 +1,13 @@
1
import { Base } from ".";
2
3
-const fooPlugin = (test: Base): { foo(): "foo" } => {
+const fooPlugin = (test: Base) => {
4
console.log("plugin evalutes");
5
6
return {
7
foo: () => "foo"
8
};
9
10
-const barPlugin = (test: Base): { bar(): "bar" } => {
+const barPlugin = (test: Base) => {
11
12
13
0 commit comments