From 883c62203292df3c34dbd6e481bca95aa67d9adf Mon Sep 17 00:00:00 2001 From: Dermot Duffy Date: Sun, 7 Aug 2022 13:54:11 -0700 Subject: [PATCH] Minor fixes. --- src/components/timeline.ts | 8 ++++---- src/declarations.d.ts | 7 +++---- 2 files changed, 7 insertions(+), 8 deletions(-) diff --git a/src/components/timeline.ts b/src/components/timeline.ts index d88cf68d..fda166e7 100644 --- a/src/components/timeline.ts +++ b/src/components/timeline.ts @@ -83,11 +83,11 @@ interface FrigateCardTimelineItem extends TimelineItem { } interface TimelineViewContext { - // The selected timeline window. - window?: TimelineWindow; + // The selected timeline window. + window?: TimelineWindow; - // The date of the last event fetch. - dateFetch?: Date; + // The date of the last event fetch. + dateFetch?: Date; } declare module 'view' { diff --git a/src/declarations.d.ts b/src/declarations.d.ts index 22731a0d..cd69265b 100644 --- a/src/declarations.d.ts +++ b/src/declarations.d.ts @@ -1,7 +1,6 @@ declare module '*.scss'; declare module '*.jpg'; -declare module "view" { +declare module 'view' { // eslint-disable-next-line @typescript-eslint/no-empty-interface - interface ViewContext { - } -} \ No newline at end of file + interface ViewContext {} +}