astro-ghostcms/.pnpm-store/v3/files/b2/cd23ea2a5dffda30e0621298a39...

16 lines
573 B
Plaintext

import type { ServiceContext } from '../types';
import type * as vscode from 'vscode-languageserver-protocol';
export interface ServiceCodeLensData {
kind: 'normal';
uri: string;
original: Pick<vscode.CodeLens, 'data'>;
serviceId: string;
}
export interface ServiceReferencesCodeLensData {
kind: 'references';
uri: string;
range: vscode.Range;
serviceId: string;
}
export declare function register(context: ServiceContext): (uri: string, token?: vscode.CancellationToken) => Promise<vscode.CodeLens[]>;
//# sourceMappingURL=codeLens.d.ts.map