Rocky_Mountain_Vending/.pnpm-store/v10/files/f7/3544ae04a42484d372f4d76271488e81e792b6ae217c3dd6b0c555f4ec443582b3a9eda836ae5811e079f873b93dd87728006a672a500a1977f5f03763aa77
DMleadgen 46d973904b
Initial commit: Rocky Mountain Vending website
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>
2026-02-12 16:22:15 -07:00

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;
}>;