UNPKG

@gotamedia/oc

Version:

Set of OC helper for NodeJs Runtime.

12 lines (11 loc) 293 B
export type OC_ERROR_OPTIONS = { cause: Error; }; declare class OCError extends Error { constructor(message: string, options?: OC_ERROR_OPTIONS); } declare class LogsError extends OCError { } declare class ObjectsError extends OCError { } export { OCError, LogsError, ObjectsError, };