UNPKG

node-web-mvc

Version:
15 lines (14 loc) 501 B
"use strict"; var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; }; Object.defineProperty(exports, "__esModule", { value: true }); const HttpEntity_1 = __importDefault(require("./HttpEntity")); class RequestEntity extends HttpEntity_1.default { constructor(url, method, data, headers) { super(data, headers); this.url = url; this.method = method; } } exports.default = RequestEntity;