TypeScript/tests/cases/fourslash/refactorExtractType66.ts
Wenlu Wang af9ca21643 add support for extract as interface (#31644)
* add support for extract as interface

* fix action assert

* Donot provide convert to interface if duplicate member
2019-08-28 11:34:40 -07:00

17 lines
404 B
TypeScript

/// <reference path='fourslash.ts' />
//// function foo<U>(a: /*a*/{ a: string } & { b: U }/*b*/) { }
goTo.select("a", "b");
edit.applyRefactor({
refactorName: "Extract type",
actionName: "Extract to interface",
actionDescription: "Extract to interface",
newContent: `interface /*RENAME*/NewType<U> {
a: string;
b: U;
}
function foo<U>(a: NewType<U>) { }`,
});