This repository has no description
0

Configure Feed

Select the types of activity you want to include in your feed.

semble / src / shared / domain / UniqueEntityID.ts
218 B 8 lines
1import { v4 as uuid } from 'uuid'; 2import { Identifier } from './Identifier'; 3 4export class UniqueEntityID extends Identifier<string | number> { 5 constructor(id?: string | number) { 6 super(id ? id : uuid()); 7 } 8}