import { MDIconTypes } from '../../types' /** * グローバルナビ主題のタイプ情報 */ export type SubtitleType = { title: string path: string subjectIndex: number infoNumber?: number } export type SubjectType = { title: string icon: MDIconTypes image?: string path: string subtitle: SubtitleType[] } /** * グローバルナビのデザインタイプ情報 */ export type DesignType = 1 | 2