This repository has been archived on 2026-03-06. You can view files and clone it, but cannot push or open issues or pull requests.
todo/client/node_modules/launch-editor/index.d.ts

17 lines
593 B
TypeScript
Raw Permalink Normal View History

2025-06-13 06:04:40 +00:00
/**
* Launch an editor to open a file at a specific line and column.
*
* @param file File path with optional line and column numbers (e.g.
* "/path/to/file.js:10:2").
* @param specifiedEditor Optional editor command or path to use. Will be
* parsed using `shell-quote`.
* @param onErrorCallback Optional callback for handling errors.
*/
declare function launchEditor(
file: string,
specifiedEditor?: string | ((fileName: string, errorMessage: string | null) => void),
onErrorCallback?: (fileName: string, errorMessage: string | null) => void
): void;
export = launchEditor;