UNPKG

arvo-core

Version:

The core Arvo package which provides application tier core primitives and contract system for building production-grade event-driven application. Provides ArvoEvent (CloudEvents-compliant), ArvoContract for type-safe service interfaces, event factories, O

9 lines (8 loc) 319 B
/** * 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;