@eclipse-glsp/vscode-integration
Version:
Glue code to integrate GLSP diagrams in VSCode extensions (extension part)
22 lines • 776 B
TypeScript
import * as vscode from 'vscode';
import { GlspVscodeConnector } from '../glsp-vscode-connector';
/**
* The `CommandContext` provides the necessary information to
* setup the default commands for a GLSP diagram extension.
*/
export interface CommandContext {
/**
* The {@link vscode.ExtensionContext} of the GLSP diagram extension
*/
extensionContext: vscode.ExtensionContext;
/**
* The diagram specific identifier that should be used to prefix command ids.
*/
diagramPrefix: string;
/**
* The {@link GlspVscodeConnector} of the GLSP diagram extension.
*/
connector: GlspVscodeConnector;
}
export declare function configureDefaultCommands(context: CommandContext): void;
//# sourceMappingURL=configuration-util.d.ts.map