UNPKG

@simplito/privmx-webendpoint

Version:

PrivMX Web Endpoint library

27 lines (24 loc) 1.78 kB
"use strict"; /*! PrivMX Web Endpoint. Copyright © 2024 Simplito sp. z o.o. This file is part of the PrivMX Platform (https://privmx.dev). This software is Licensed under the PrivMX Free License. See the License for the specific language governing permissions and limitations under the License. */ Object.defineProperty(exports, "__esModule", { value: true }); exports.ExtKey = exports.BaseApi = exports.Connection = exports.CryptoApi = exports.InboxApi = exports.ThreadApi = exports.StoreApi = exports.EventQueue = exports.Types = exports.Endpoint = void 0; const EndpointFactory_1 = require("./service/EndpointFactory"); Object.defineProperty(exports, "Endpoint", { enumerable: true, get: function () { return EndpointFactory_1.EndpointFactory; } }); const service_1 = require("./service"); Object.defineProperty(exports, "EventQueue", { enumerable: true, get: function () { return service_1.EventQueue; } }); Object.defineProperty(exports, "StoreApi", { enumerable: true, get: function () { return service_1.StoreApi; } }); Object.defineProperty(exports, "ThreadApi", { enumerable: true, get: function () { return service_1.ThreadApi; } }); Object.defineProperty(exports, "InboxApi", { enumerable: true, get: function () { return service_1.InboxApi; } }); Object.defineProperty(exports, "Connection", { enumerable: true, get: function () { return service_1.Connection; } }); Object.defineProperty(exports, "CryptoApi", { enumerable: true, get: function () { return service_1.CryptoApi; } }); Object.defineProperty(exports, "BaseApi", { enumerable: true, get: function () { return service_1.BaseApi; } }); Object.defineProperty(exports, "ExtKey", { enumerable: true, get: function () { return service_1.ExtKey; } }); const Types = require("./Types"); exports.Types = Types;