Add stickerVal to the types files.

This commit is contained in:
Lucid Kobold
2022-01-07 10:49:32 -06:00
parent ad7733e979
commit dd1945a4ef
3 changed files with 6 additions and 4 deletions

View File

@@ -14,9 +14,11 @@ interface WeekDays {
monday: DaysOfWeek;
}
type StickerVal = -2 | -1 | 0 | 1 | 2 | null;
interface Sticker {
date: Date;
sticker: -2 | -1 | 0 | 1 | 2 | null;
sticker: StickerVal;
}
type StickerDays = Sticker[];