astro-ghostcms/.pnpm-store/v3/files/e4/4814450bcecf3f3be7bbc8a6314...

9 lines
454 B
Plaintext

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