UNPKG

kickbox

Version:

Official kickbox API library client for node.js

12 lines (10 loc) 233 B
/** * Response object contains the response returned by the client */ var Response = function(body, code, headers) { this.body = body; this.code = code; this.headers = headers; }; // Export module module.exports = Response;