/// //// type A = T; //// type B = /*a*/A/*b*/; goTo.select("a", "b"); edit.applyRefactor({ refactorName: "Extract type", actionName: "Extract to type alias", actionDescription: "Extract to type alias", newContent: `type A = T; type /*RENAME*/NewType = A; type B = NewType;`, });