UNPKG

tscribe

Version:

CLI to dump TypeScript sources with headings for LLM ingestion

14 lines (13 loc) 282 B
export interface TscribeOptions { src: string; out?: string; ext: string; ignore?: string; heading?: string; format: "md" | "plain"; sort: "alpha" | "path" | "mtime"; list?: boolean; watch?: boolean; quiet?: boolean; verbose?: boolean; }