UNPKG

lml-main

Version:

This is now a mono repository published into many standalone packages.

11 lines (10 loc) 274 B
export declare const HTTP_FAILURE = "HTTP_FAILURE"; export interface HttpFailureAction { type: 'HTTP_FAILURE'; error: any; } export declare type HttpAction = HttpFailureAction; export declare const httpFailure: (error: any) => { error: any; type: string; };