UNPKG

openapi-tsk

Version:
33 lines (32 loc) 1.92 kB
"use strict"; var __classPrivateFieldGet = (this && this.__classPrivateFieldGet) || function (receiver, state, kind, f) { if (kind === "a" && !f) throw new TypeError("Private accessor was defined without a getter"); if (typeof state === "function" ? receiver !== state || !f : !state.has(receiver)) throw new TypeError("Cannot read private member from an object whose class did not declare it"); return kind === "m" ? f : kind === "a" ? f.call(receiver) : f ? f.value : state.get(receiver); }; var __classPrivateFieldSet = (this && this.__classPrivateFieldSet) || function (receiver, state, value, kind, f) { if (kind === "m") throw new TypeError("Private method is not writable"); if (kind === "a" && !f) throw new TypeError("Private accessor was defined without a setter"); if (typeof state === "function" ? receiver !== state || !f : !state.has(receiver)) throw new TypeError("Cannot write private member to an object whose class did not declare it"); return (kind === "a" ? f.call(receiver, value) : f ? f.value = value : state.set(receiver, value)), value; }; var _a, _SecuritySchemesStore_store; Object.defineProperty(exports, "__esModule", { value: true }); exports.SecuritySchemesStore = void 0; class SecuritySchemesStore { static add(key, schema) { __classPrivateFieldGet(this, _a, "f", _SecuritySchemesStore_store).securitySchemes[key] = schema; } static get() { return __classPrivateFieldGet(this, _a, "f", _SecuritySchemesStore_store).securitySchemes; } static dispose() { delete __classPrivateFieldGet(this, _a, "f", _SecuritySchemesStore_store).securitySchemes; __classPrivateFieldSet(this, _a, { securitySchemes: {} }, "f", _SecuritySchemesStore_store); } } exports.SecuritySchemesStore = SecuritySchemesStore; _a = SecuritySchemesStore; _SecuritySchemesStore_store = { value: { securitySchemes: {}, } };