Skip to content

Commit

Permalink
Update data type files
Browse files Browse the repository at this point in the history
  • Loading branch information
fgervasi committed Sep 20, 2023
1 parent 0c7f731 commit 5c7bb3f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion data/dist/cjs/TwoDimensionToObjectArray.d.ts
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
declare function twoDimensionToObjectArray(arrays: (string | number | boolean)[][]): {}[];
declare function twoDimensionToObjectArray(arrays: (string | number | boolean | null)[][]): {}[];
export { twoDimensionToObjectArray };
2 changes: 1 addition & 1 deletion data/dist/mjs/TwoDimensionToObjectArray.d.ts
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
declare function twoDimensionToObjectArray(arrays: (string | number | boolean)[][]): {}[];
declare function twoDimensionToObjectArray(arrays: (string | number | boolean | null)[][]): {}[];
export { twoDimensionToObjectArray };

0 comments on commit 5c7bb3f

Please sign in to comment.