You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
bazarr/frontend/src/History/Statistics/options.ts

34 lines
542 B

export const actionOptions: SelectorOption<History.ActionOptions>[] = [
{
label: "Automatically Downloaded",
value: 0,
},
{
label: "Manually Downloaded",
value: 1,
},
{
label: "Upgraded",
value: 2,
},
];
export const timeframeOptions: SelectorOption<History.TimeframeOptions>[] = [
{
label: "Last Week",
value: "week",
},
{
label: "Last Month",
value: "month",
},
{
label: "Last Trimester",
value: "trimester",
},
{
label: "Last Year",
value: "year",
},
];