JSON import support
+ JSON import added + code structure refactored
This commit is contained in:
7
types/json.ts
Normal file
7
types/json.ts
Normal file
@ -0,0 +1,7 @@
|
||||
/**
|
||||
* Raw JSON object returned by `JSON.parse`.
|
||||
*/
|
||||
export type RawJsonRow = {
|
||||
// deno-lint-ignore no-explicit-any
|
||||
[key: string]: any;
|
||||
};
|
Reference in New Issue
Block a user