Files
website/node_modules/@volar/language-service/lib/features/provideInlayHints.d.ts
2024-05-06 17:15:30 -04:00

9 lines
417 B
TypeScript

import type * as vscode from 'vscode-languageserver-protocol';
import type { ServiceContext } from '../types';
export interface InlayHintData {
uri: string;
original: Pick<vscode.CodeAction, 'data' | 'edit'>;
serviceIndex: number;
}
export declare function register(context: ServiceContext): (uri: string, range: vscode.Range, token?: vscode.CancellationToken) => Promise<vscode.InlayHint[] | undefined>;