vtjump
Version:
A vite plugin for vtjump
13 lines (11 loc) • 363 B
TypeScript
import { VTJumpOptions } from './types';
export declare const locationMap: Map<string, {
file: string;
startLine: number;
endLine: number;
}>;
export declare function generateId(filePath: string, line: number): {
id: string;
line: number;
};
export declare function createJumpUrl(file: string, line: string, options?: VTJumpOptions): string;