arvo-core
Version:
This core package contains all the core classes and components of the Arvo Event Driven System
9 lines (8 loc) • 319 B
TypeScript
/**
* Checks if an object is JSON serializable.
*
* @param obj - The object to check for JSON serializability.
* @returns A boolean indicating whether the object is JSON serializable.
* @throws {Error} If the object is not JSON serializable.
*/
export declare const isJSONSerializable: (obj: unknown) => boolean;