From 795bdd22d27c4f25b0428ad66bd7b1f878d6a016 Mon Sep 17 00:00:00 2001 From: Jeremi Stadler Date: Wed, 23 Jun 2021 09:19:57 +0200 Subject: [PATCH] Create browser sync.d.ts --- lib/browser/sync.d.ts | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 lib/browser/sync.d.ts diff --git a/lib/browser/sync.d.ts b/lib/browser/sync.d.ts new file mode 100644 index 0000000..8a0c6c9 --- /dev/null +++ b/lib/browser/sync.d.ts @@ -0,0 +1,6 @@ +import * as csvParse from '../index'; + +export = parse; + +declare function parse(input: string, options?: csvParse.Options): any; +declare namespace parse {}