UNPKG

hud-ai

Version:
18 lines (14 loc) 382 B
import { Company } from './Company'; export interface UserCompanyGroupBase { id: string; userId: string; name: string; createdAt: Date; updatedAt: Date; } export interface UserCompanyGroup extends UserCompanyGroupBase { companies: Company[]; } export interface UserCompanyGroupListElement extends UserCompanyGroupBase { companies: { id: string }[], }