1 2 3 4 5 6 7 8 9 10 11 12 | 1× 22× 22× 17× 1× | "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); class Header { constructor(contentType) { this.contentType = contentType; if (!contentType) { this.contentType = "application/json"; } } } exports.Header = Header; |