Skip to content

Commit

Permalink
no more FileOptions, #48668
Browse files Browse the repository at this point in the history
  • Loading branch information
jrieken committed Apr 26, 2018
1 parent aab6f59 commit 9d2bc79
Showing 1 changed file with 0 additions and 26 deletions.
26 changes: 0 additions & 26 deletions src/vs/vscode.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4948,32 +4948,6 @@ declare module 'vscode' {
*/
uri: Uri;
}
/**
* Commonly used options when reading, writing, or stat'ing files or folders.
*/
export interface FileOptions {

/**
* Create a file when it doesn't exists
*/
create?: boolean;

/**
* In combination with [`create`](FileOptions.create) but
* the operation should fail when a file already exists.
*/
exclusive?: boolean;

/**
* Open a file for reading.
*/
read?: boolean;

/**
* Open a file for writing.
*/
write?: boolean;
}

/**
* The filesystem provider defines what the editor needs to read, write, discover,
Expand Down

0 comments on commit 9d2bc79

Please sign in to comment.