UNPKG

intradoc

Version:

In-place document content replacer CLI utility.

12 lines (11 loc) 292 B
import { replace } from '@intradoc/core'; import type CLIApp from '../../CLIApp'; interface Options { files: string[]; data: string[]; app: CLIApp; replacer: typeof replace; cwd: string; } export declare const processInput: (options: Options) => Promise<void>; export {};