export type Company = { // Unique company id _id: string; // The company name name: string; }; export type CompanyDraft = Omit;