UNPKG

intradoc

Version:

In-place document content replacer CLI utility.

11 lines (10 loc) 268 B
import { replace } from '@intradoc/core'; import { type Options } from './CLIApp'; interface CLIOptions { argv: any[]; app: Options; replacer: typeof replace; cwd?: string; } export declare const run: (options: CLIOptions) => Promise<void>; export {};