UNPKG
intradoc
Version:
latest (1.1.2)
1.1.2
1.1.1
1.1.0
1.0.2
1.0.1
1.0.0
In-place document content replacer CLI utility.
github.com/intradoc/intradoc
intradoc/intradoc
intradoc
/
src
/
process
/
processInput
/
index.d.ts
12 lines
(11 loc)
•
292 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
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
{};