8 lines
143 B
TypeScript
8 lines
143 B
TypeScript
/**
|
|
* Raw JSON object returned by `JSON.parse`.
|
|
*/
|
|
export type RawJsonRow = {
|
|
// deno-lint-ignore no-explicit-any
|
|
[key: string]: any;
|
|
};
|