mirror of
https://github.com/Sonarr/Sonarr.git
synced 2025-06-28 09:27:29 -04:00
Typings for iCal state options
This commit is contained in:
parent
90c4791d5f
commit
6e43b08dab
1 changed files with 6 additions and 1 deletions
|
@ -22,7 +22,12 @@ interface CalendarLinkModalContentProps {
|
|||
function CalendarLinkModalContent({
|
||||
onModalClose,
|
||||
}: CalendarLinkModalContentProps) {
|
||||
const [state, setState] = useState({
|
||||
const [state, setState] = useState<{
|
||||
unmonitored: boolean;
|
||||
premieresOnly: boolean;
|
||||
asAllDay: boolean;
|
||||
tags: number[];
|
||||
}>({
|
||||
unmonitored: false,
|
||||
premieresOnly: false,
|
||||
asAllDay: false,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue