10 lines
353 B
TypeScript
10 lines
353 B
TypeScript
import { Connection } from 'vscode-languageserver';
|
|
import { CommandExecutor } from '../commandExecutor';
|
|
export declare class WorkspaceHandlers {
|
|
private readonly connection;
|
|
private readonly commandExecutor;
|
|
constructor(connection: Connection, commandExecutor: CommandExecutor);
|
|
registerHandlers(): void;
|
|
private executeCommand;
|
|
}
|