1 | import { ShowDocumentParams, ShowDocumentResult } from 'vscode-languageserver-protocol';
|
2 | import type { Feature, _RemoteWindow } from './server';
|
3 | export interface ShowDocumentFeatureShape {
|
4 | showDocument(params: ShowDocumentParams): Promise<ShowDocumentResult>;
|
5 | }
|
6 | export declare const ShowDocumentFeature: Feature<_RemoteWindow, ShowDocumentFeatureShape>;
|