Minor fixes.

This commit is contained in:
Dermot Duffy
2022-08-07 13:54:11 -07:00
parent d5728a47b9
commit 883c622032
2 changed files with 7 additions and 8 deletions
+4 -4
View File
@@ -83,11 +83,11 @@ interface FrigateCardTimelineItem extends TimelineItem {
} }
interface TimelineViewContext { interface TimelineViewContext {
// The selected timeline window. // The selected timeline window.
window?: TimelineWindow; window?: TimelineWindow;
// The date of the last event fetch. // The date of the last event fetch.
dateFetch?: Date; dateFetch?: Date;
} }
declare module 'view' { declare module 'view' {
+3 -4
View File
@@ -1,7 +1,6 @@
declare module '*.scss'; declare module '*.scss';
declare module '*.jpg'; declare module '*.jpg';
declare module "view" { declare module 'view' {
// eslint-disable-next-line @typescript-eslint/no-empty-interface // eslint-disable-next-line @typescript-eslint/no-empty-interface
interface ViewContext { interface ViewContext {}
} }
}