interface IGroupLocation { address: string; city: string; postal_code: string; } interface IGroup { _id?: string; name: string; description: string; location: IGroupLocation; region: string; size: number | null; } export type { IGroup as I, IGroupLocation as a };