@simplito/privmx-webendpoint
Version:
PrivMX Web Endpoint library
22 lines (19 loc) • 534 B
JavaScript
;
/*!
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.IdGenerator = void 0;
class IdGenerator {
_id = 0;
generateId() {
this._id++;
return this._id;
}
}
exports.IdGenerator = IdGenerator;