cloudstudio
Version:
Run VS Code on a remote server.
11 lines (10 loc) • 546 B
TypeScript
import { Registry } from "./common-protocol";
import * as vscode from "vscode";
import { CloudStudioAuthenticationProvider } from "./authentication";
export declare class CommandRegistry implements Registry {
protected readonly authenticationProvider: CloudStudioAuthenticationProvider;
register(): Promise<void>;
protected registerCommand(command: string, callback: (...args: any[]) => any, thisArg?: any): vscode.Disposable;
protected registerSetSessionCommand(): void;
protected registerBusinessCommand(): Promise<void>;
}