UNPKG

tscribe

Version:

CLI to dump TypeScript sources with headings for LLM ingestion

5 lines (4 loc) 293 B
import { TscribeOptions } from "./types"; export declare function buildGlobPattern(srcPath: string, ext: string): string; export declare function tscribe(opts: TscribeOptions): Promise<void>; export declare function applySort(files: string[], mode: TscribeOptions["sort"]): Promise<string[]>;