UNPKG

ts-patch

Version:

Patch typescript to support custom transformers in tsconfig.json

15 lines (14 loc) 340 B
import minimist from 'minimist'; export type CliConfig = Record<string, { short?: string; caption: string; paramCaption?: string; inverse?: boolean; }>; export declare function run(opt?: { cmdArgs?: string; }): { cmd: string | undefined; args: minimist.ParsedArgs; options: import("..").InstallerOptions; };