/// // @allowJs: true // @Filename: a.js //// /** @type { /*a*/string/*b*/ | number } */ //// var x; goTo.file('a.js') goTo.select("a", "b"); edit.applyRefactor({ refactorName: "Extract type", actionName: "Extract to typedef", actionDescription: "Extract to typedef", newContent: `/** * @typedef {string} /*RENAME*/NewType */ /** @type { NewType | number } */ var x;`, });