From 8522942be381914e3115f061095f60b2a1307bd1 Mon Sep 17 00:00:00 2001 From: Leon Sorokin Date: Tue, 5 Sep 2023 14:08:59 -0500 Subject: [PATCH] typings doc tweak --- dist/uDSV.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dist/uDSV.d.ts b/dist/uDSV.d.ts index b19983a..d8f0b22 100644 --- a/dist/uDSV.d.ts +++ b/dist/uDSV.d.ts @@ -3,7 +3,7 @@ type DeepReadonly = { } export interface InferSchemaOpts { - /** should return an array whose length is how many header rows to skip, and should include an UntypedRow to use for col names */ + /** should return an array whose length is how many header rows to skip, and should include a string[] to use for col names */ header?: (rows: string[]) => (string[] | null)[]; // default: rows => [rows[0]] /** column delimiter (null = infer, ',' = comma) */