5 lines
335 B
TypeScript
5 lines
335 B
TypeScript
import type * as vscode from 'vscode-languageserver-protocol';
|
|
import { URI } from 'vscode-uri';
|
|
import type { LanguageServiceContext, NullableProviderResult } from '../types';
|
|
export declare function register(context: LanguageServiceContext): (uri: URI, token?: vscode.CancellationToken) => NullableProviderResult<vscode.Location[]>;
|