astro-ghostcms/.pnpm-store/v3/files/8a/1cda07b83d04a222abfc8cc3724...

5 lines
426 B
Plaintext
Raw Normal View History

2024-02-14 19:45:06 +00:00
import type * as vscode from 'vscode-languageserver-protocol';
import type { ServiceContext } from '../types';
export declare function register(context: ServiceContext): (uri: string, position: vscode.Position, newName: string, token?: vscode.CancellationToken) => Promise<vscode.WorkspaceEdit | undefined>;
export declare function mergeWorkspaceEdits(original: vscode.WorkspaceEdit, ...others: vscode.WorkspaceEdit[]): void;