import * as crypto from 'crypto'; class Guid { public static new(): string { return crypto.randomUUID(); } } export { Guid };