UNPKG

create-split

Version:

CLI tool to connect Next.js sites to Split AI content delivery system

9 lines (8 loc) 261 B
/** * Safely writes a file, ensuring the directory exists * and optionally backing up existing files */ export declare function writeFileSafe(filePath: string, content: string, options?: { backup?: boolean; overwrite?: boolean; }): Promise<boolean>;