mirror of
https://github.com/sern-handler/website
synced 2026-06-24 16:52:22 +00:00
9 lines
417 B
TypeScript
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>;
|