UNPKG

fenextjs-hook

Version:
10 lines (9 loc) 295 B
export interface onApiErrorData { message: string; } export interface useApiErrorProps { onActionExecute?: (data?: onApiErrorData) => void; } export declare const useApiError: ({ onActionExecute }: useApiErrorProps) => { onApiError: (detail?: onApiErrorData | undefined) => void; };