type Foo = [string, number];
interface Bar {
test(a: Foo): void;
}
class Baz implements Bar{
}
Using fill in Baz implementation quick fix:
type Foo = [string, number];
interface Bar {
test(a: Foo): void;
}
class Baz implements Bar {
test(a: [string, number]): void {
throw new Error("Method not implemented.");
}
}
I expect:
class Baz implements Bar {
test(a: Foo): void {
throw new Error("Method not implemented.");
}
}
/cc @mjbvz
Using fill in Baz implementation quick fix:
I expect:
/cc @mjbvz