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
/
utils
/
index.d.ts
7 lines
(6 loc)
•
254 B
TypeScript
View Raw
1
2
3
4
5
6
7
export
declare
const
fileExists
:
(
path
:
string
) =>
Promise
<
boolean
>;
export
declare
const
loadFile
:
(
path
:
string
) =>
Promise
<{
content
:
string
;
extension
:
string
; }>;
export
declare
const
saveFile
:
(
path
:
string
,
data
:
string
) =>
Promise
<
void
>;