interface Timeline {
    description?: string;
    end?: string | Date;
    isCurrent: boolean;
    location?: {
        city?: string;
        prefecture?: string;
    };
    start: string | Date;
    subtitle?: string;
    title: string;
}

Properties

description?: string
end?: string | Date
isCurrent: boolean
location?: {
    city?: string;
    prefecture?: string;
}

Type declaration

  • Optional city?: string
  • Optional prefecture?: string
start: string | Date
subtitle?: string
title: string

Generated using TypeDoc