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
/
index.d.ts
11 lines
(10 loc)
•
268 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
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
{};