UNPKG
csv-append
Version:
latest (1.0.0)
1.0.0
Append data to a big csv file.
github.com/rakannimer/csv-append
rakannimer/csv-append
csv-append
/
dist
/
index.d.ts
9 lines
(8 loc)
•
244 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
export
declare
type
CsvAppendOptions
= {
headers
?:
boolean
; };
export
declare
const
csvAppend
:
(
path
:
string
,
appendToExisting
?:
boolean
) =>
{
append
:
(
args
:
any
) =>
any
;
end
:
() =>
Promise
<{}>; };
export
default
csvAppend;