UNPKG

kakapo

Version:

Next generation mocking framework in Javascript

14 lines (13 loc) 329 B
export declare class KakapoResponse { code: number; body: any; headers: { [header: string]: string; }; constructor(code?: number, body?: any, headers?: { [header: string]: string; }); readonly error: boolean; readonly ok: boolean; static wrap(response: any): KakapoResponse; }