mirror of
https://github.com/coder/code-server.git
synced 2025-09-26 01:25:19 +08:00
Add storage save to ide-api
This commit is contained in:
5
packages/ide-api/api.d.ts
vendored
5
packages/ide-api/api.d.ts
vendored
@ -136,12 +136,17 @@ interface ICommandRegistry {
|
||||
registerCommand(command: ICommand): IDisposable;
|
||||
}
|
||||
|
||||
interface IStorageService {
|
||||
save(): Promise<void>;
|
||||
}
|
||||
|
||||
declare namespace ide {
|
||||
export const client: {};
|
||||
|
||||
export const workbench: {
|
||||
readonly statusbarService: IStatusbarService;
|
||||
readonly notificationService: INotificationService;
|
||||
readonly storageService: IStorageService;
|
||||
readonly menuRegistry: IMenuRegistry;
|
||||
readonly commandRegistry: ICommandRegistry;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user