summaryrefslogtreecommitdiff
path: root/build/types/UUID.js
blob: 420509996df1990a9cab23e5bd55d5f486ce15f4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
"use strict";
var __importDefault = (this && this.__importDefault) || function (mod) {
    return (mod && mod.__esModule) ? mod : { "default": mod };
};
Object.defineProperty(exports, "__esModule", { value: true });
const uuid_v4_1 = __importDefault(require("uuid-v4"));
class UUID extends String {
    constructor() {
        super((0, uuid_v4_1.default)());
    }
}
exports.default = UUID;
//# sourceMappingURL=UUID.js.map