This commit is contained in:
Johannes Rieken 2019-11-12 09:43:38 +01:00
parent 90cc118a14
commit 623bae8905

3
src/vs/vscode.d.ts vendored
View file

@ -5986,6 +5986,9 @@ declare module 'vscode' {
/**
* Create a new directory (Note, that new files are created via `write`-calls).
*
* *Note* that missing directories are created automatically, e.g this call has
* `mkdirp` semantics.
*
* @param uri The uri of the new folder.
*/
createDirectory(uri: Uri): Thenable<void>;