Use ref instead of version

This commit is contained in:
Sandeep Somavarapu
2019-09-12 16:17:05 +02:00
parent eb55f59c93
commit 88e5a183ae
7 changed files with 24 additions and 24 deletions

View File

@@ -755,7 +755,7 @@ export interface ExtHostConfigurationShape {
export interface ExtHostUserDataShape {
$read(key: string): Promise<IUserData | null>;
$write(key: string, version: number, content: string): Promise<void>;
$write(key: string, content: string, ref: string): Promise<string>;
}
export interface ExtHostDiagnosticsShape {