Next.js website for Rocky Mountain Vending company featuring: - Product catalog with Stripe integration - Service areas and parts pages - Admin dashboard with Clerk authentication - SEO optimized pages with JSON-LD structured data Co-authored-by: Cursor <cursoragent@cursor.com>
11 lines
553 B
Text
11 lines
553 B
Text
export declare function escapeApplescriptStringFragment(input: string): string;
|
|
export declare function launchEditor(fileName: string, line1: number, column1: number): void;
|
|
/**
|
|
* Open the file in editor if exists, otherwise return an error
|
|
* @param file `file:` URL, or absolute path or relative path. Relative paths must
|
|
* relative to `nextRootDirectory`.
|
|
*/
|
|
export declare function openFileInEditor(file: string, line1: number, column1: number, nextRootDirectory: string): Promise<{
|
|
found: boolean;
|
|
error: unknown | null;
|
|
}>;
|