mirror of
https://github.com/sern-handler/website
synced 2026-06-25 17:22:23 +00:00
7 lines
355 B
TypeScript
7 lines
355 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, lastChange: {
|
|
range: vscode.Range;
|
|
text: string;
|
|
}, token?: vscode.CancellationToken) => Promise<string | vscode.TextEdit | undefined>;
|