import { FacilityCode, ServiceArea as ServiceAreaName } from '@secondcloset/types/src/_common'; export type CountryCode = "CA" | "US"; export type Address = { country: CountryCode; province: string; }; export type ServiceAreaData = { id: number; name: ServiceAreaName; timezone: string; timezone_iana: string; humanized_name: string; address: Address; facilities: FacilityCode[]; created_at: string; updated_at: string; };