/**
 * 상점 영업시간 (HH:mm)
 */
export type StoreDetailsOpeningHours = {
    /**
     * 영업 시작 시간
     */
    open?: string | undefined;
    /**
     * 영업 종료 시간
     */
    close?: string | undefined;
};
