UNPKG

mockttp-mvs

Version:

Mock HTTP server for testing HTTP clients and stubbing webservices

9 lines (8 loc) 242 B
export declare type ErrorLike = Partial<Error> & { code?: string; cmd?: string; signal?: string; statusCode?: number; statusMessage?: string; }; export declare function isErrorLike(error: any): error is ErrorLike;