summaryrefslogtreecommitdiff
path: root/src/types/UUID.ts
blob: 4a6c1eb130608abc21f055b3845f01aeeccf9ef1 (plain)
1
2
3
4
5
6
7
import uuid from "uuid-v4";

export default class UUID extends String {
    constructor() {
        super(uuid());
    }
}