This repository has been archived on 2023-01-14. You can view files and clone it, but cannot push or open issues or pull requests.
libsiaweb/dist/stringifyJSON.d.ts

4 lines
117 B
TypeScript
Raw Normal View History

2023-01-14 07:26:26 +00:00
import { Err } from "./types.js";
declare function jsonStringify(obj: any): [string, Err];
export { jsonStringify };