import {Uuid} from '@theoryofnekomata/uuid-buffer'; export type User = { id: Uuid, username: string, } export type Org = { id: Uuid, name: string, description: string, }