mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-22 17:48:56 +01:00
fix compilation
This commit is contained in:
@@ -28,8 +28,8 @@ export class MainThreadUserData extends Disposable implements MainThreadUserData
|
||||
read(key: string): Promise<IUserData | null> {
|
||||
return proxy.$read(key);
|
||||
},
|
||||
write(key: string, version: number, content: string): Promise<void> {
|
||||
return proxy.$write(key, version, content);
|
||||
write(key: string, content: string, ref: string): Promise<string> {
|
||||
return proxy.$write(key, content, ref);
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user