1 | import { InlineCompletionItem, Disposable, InlineCompletionParams, InlineCompletionList } from 'vscode-languageserver-protocol';
|
2 | import type { Feature, _Languages, ServerRequestHandler } from './server';
|
3 |
|
4 |
|
5 |
|
6 |
|
7 |
|
8 | export interface InlineCompletionFeatureShape {
|
9 | inlineCompletion: {
|
10 | |
11 |
|
12 |
|
13 |
|
14 |
|
15 | on(handler: ServerRequestHandler<InlineCompletionParams, InlineCompletionList | InlineCompletionItem[] | undefined | null, InlineCompletionItem[], void>): Disposable;
|
16 | };
|
17 | }
|
18 | export declare const InlineCompletionFeature: Feature<_Languages, InlineCompletionFeatureShape>;
|