mirror of
https://github.com/sern-handler/website
synced 2026-06-24 08:42:31 +00:00
4 lines
331 B
TypeScript
4 lines
331 B
TypeScript
import type * as vscode from 'vscode-languageserver-protocol';
|
|
import type { ServiceContext } from '../types';
|
|
export declare function register(context: ServiceContext): (uri: string, position: vscode.Position, referenceContext: vscode.ReferenceContext, token?: vscode.CancellationToken) => Promise<vscode.Location[] | undefined>;
|