@zowe/imperative
Version:
framework for building configurable CLIs
27 lines • 1.05 kB
JavaScript
/*
* This program and the accompanying materials are made available under the terms of the
* Eclipse Public License v2.0 which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-v20.html
*
* SPDX-License-Identifier: EPL-2.0
*
* Copyright Contributors to the Zowe Project.
*
*/
Object.defineProperty(exports, "__esModule", { value: true });
exports.Headers = void 0;
class Headers {
}
exports.Headers = Headers;
Headers.CONTENT_TYPE = "Content-Type";
Headers.CONTENT_LENGTH = "Content-Length";
Headers.CONTENT_ENCODING = "Content-Encoding";
Headers.CONTENT_ENCODING_TYPES = ["br", "deflate", "gzip"];
Headers.APPLICATION_JSON = { "Content-Type": "application/json" };
Headers.TEXT_PLAIN = { "Content-Type": "text/plain" };
Headers.TEXT_PLAIN_UTF8 = { "Content-Type": "text/plain; charset=utf8" };
Headers.OCTET_STREAM = { "Content-Type": "application/octet-stream" };
Headers.BASIC_AUTHORIZATION = { Authorization: "" };
Headers.COOKIE_AUTHORIZATION = { Cookie: "" };
//# sourceMappingURL=Headers.js.map
;