Type Alias DateParameterDefinition

DateParameterDefinition: {
    date: string;
    end?: never;
    start?: never;
} | {
    date?: string;
    end: string;
    start: string;
} | {
    date: string;
    end: string;
    start: string;
}

date configures the key to look for the date on single-day events, while start and end define the boundaries of an event.

""