UNPKG

libmodulor

Version:

A TypeScript library to create platform-agnostic applications

17 lines (16 loc) 436 B
import { TPersonFirstname, TPersonInitials, TUUID } from '../../dt/index.js'; export const FAKE_USER_ADMIN = { organization: { id: new TUUID().example(), }, role: 'admin', user: { firstname: new TPersonFirstname().example(), id: new TUUID().example(), initials: new TPersonInitials().example(), }, }; export const FAKE_USER_REGULAR = { ...FAKE_USER_ADMIN, role: 'regular', };