astro-ghostcms/.pnpm-store/v3/files/88/a8b2413416321b0c0a429b87f16...

9 lines
383 B
Plaintext

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