UNPKG

@playbooks/utils

Version:

A collection of utilities used for Playbooks.

25 lines (24 loc) 554 B
export declare const normalizeError: (error: any) => { status: any; title: any; message: any; }; export declare const serializeError: (error: any) => { status: any; title: any; detail: any; source: any; }; export declare const objectionError: (e: any) => { status: any; title: any; detail: any; source: any; }; export declare const jsonApiError: (status: any, title: any, detail: any, source: any) => { status: any; title: any; detail: any; source: any; }; export declare const httpError: any;