@punks/backend-core 0.0.17 → 0.0.18
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cjs/index.js +12 -1
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/types/utils/csv.d.ts +1 -1
- package/dist/esm/index.js +12 -1
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/types/utils/csv.d.ts +1 -1
- package/dist/index.d.ts +1 -1
- package/package.json +1 -1
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export declare const csvParseRaw: (
|
|
1
|
+
export declare const csvParseRaw: (data: string | string[] | Blob, separator: string) => Promise<string[][]>;
|
|
2
2
|
export interface CsvColumnDefinition<T> {
|
|
3
3
|
name: string;
|
|
4
4
|
value: (item: T) => any;
|
package/dist/index.d.ts
CHANGED
|
@@ -61,7 +61,7 @@ declare const distinctElements: <T>(values: T[], comparer: (value: T) => any) =>
|
|
|
61
61
|
declare const jsonDistinct: <T>(values: T[]) => T[];
|
|
62
62
|
declare const iterate: <T>(values: T[], action: (item: T, next?: T | undefined, prev?: T | undefined) => void) => void;
|
|
63
63
|
|
|
64
|
-
declare const csvParseRaw: (
|
|
64
|
+
declare const csvParseRaw: (data: string | string[] | Blob, separator: string) => Promise<string[][]>;
|
|
65
65
|
interface CsvColumnDefinition<T> {
|
|
66
66
|
name: string;
|
|
67
67
|
value: (item: T) => any;
|