Fix sticker seeder.

This commit is contained in:
Lucid Kobold
2022-01-03 14:07:03 -06:00
parent 71eaedea9d
commit 454ef47837
3 changed files with 21 additions and 10 deletions

View File

@@ -19,6 +19,8 @@ interface Sticker {
sticker: -2 | -1 | 0 | 1 | 2 | null;
}
type StickerDays = Sticker[];
interface MonthSticker {
date: Date;
month: Sticker[];
@@ -69,4 +71,4 @@ interface CalenderContextState {
title: string;
layout: MonthLayout;
updateDate: (input: UpdateCalendarProps) => void;
}
}