UNPKG

legal-markdown-js

Version:

Node.js implementation of LegalMarkdown for processing legal documents with markdown and YAML - Complete feature parity with Ruby version

25 lines 723 B
/** * Archive Options Prompt * * This module handles user interaction for configuring source file archiving * in the interactive CLI. It provides prompts for enabling archiving and * customizing the archive directory. * * @module */ /** * Result of the archive options prompt */ export interface ArchivePromptResult { /** Whether archiving is enabled */ enableArchiving: boolean; /** Custom archive directory (if provided) */ archiveDirectory?: string; } /** * Prompt user for archive configuration options * * @returns Promise resolving to the archive configuration */ export declare function promptArchiveOptions(): Promise<ArchivePromptResult>; //# sourceMappingURL=archive-options.d.ts.map