interface RangeSelectorButton {
    count: number;
    label: string;
    step:
        | "year"
        | "month"
        | "day"
        | "hour"
        | "all"
        | "second"
        | "minute";
    stepmode: "backward" | "todate";
}

Properties

count: number
label: string
step:
    | "year"
    | "month"
    | "day"
    | "hour"
    | "all"
    | "second"
    | "minute"
stepmode: "backward" | "todate"