Documenting more js/ts refactorings

This commit is contained in:
Matt Bierner
2019-11-06 17:09:23 -08:00
parent fe59391214
commit 692630172a
3 changed files with 38 additions and 5 deletions

View File

@@ -84,5 +84,11 @@
"codeActions.refactor.extract.type.description": "Extract type to a type alias.",
"codeActions.refactor.extract.interface.title": "Extract interface",
"codeActions.refactor.extract.interface.description": "Extract type to an interface.",
"codeActions.refactor.rewrite.import.title": "Convert import",
"codeActions.refactor.rewrite.import.description": "Convert between named imports and namespace imports.",
"codeActions.refactor.rewrite.export.title": "Convert export",
"codeActions.refactor.rewrite.export.description": "Convert between default export and named export.",
"codeActions.refactor.move.newFile.title": "Move to a new file",
"codeActions.refactor.move.newFile.description": "Move the expression to a new file.",
"codeActions.source.organizeImports.title": "Organize imports"
}