UNPKG

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