dd4174b845512bf4ed53a99c4af911130a8f902b
[dotfiles/.git] / showDocument.d.ts
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>;