yaml-language-server
Version:
10 lines (9 loc) • 363 B
TypeScript
import type { Connection } from 'vscode-languageserver';
import type { CommandExecutor } from '../commandExecutor';
export declare class WorkspaceHandlers {
private readonly connection;
private readonly commandExecutor;
constructor(connection: Connection, commandExecutor: CommandExecutor);
registerHandlers(): void;
private executeCommand;
}