#!/usr/bin/env bun /** * @fileoverview CLI entry point for md-to-pdf converter * @module cli * * This is the main command-line interface for converting Markdown files to PDF. * It supports single file conversion, batch processing, and various configuration options. * * @example * ```bash * # Convert a single file * md-to-pdf document.md * * # Convert with options * md-to-pdf document.md --theme github-dark --toc --output ./output * * # Convert entire directory * md-to-pdf ./docs --output ./pdf-output * * # Initialize configuration file * md-to-pdf init * ``` */ export {}; //# sourceMappingURL=cli.d.ts.map