diff options
| author | bobzel <zzzman@gmail.com> | 2024-04-29 23:51:24 -0400 |
|---|---|---|
| committer | bobzel <zzzman@gmail.com> | 2024-04-29 23:51:24 -0400 |
| commit | 9dc32440852c8af3575687d96f0442bf18542671 (patch) | |
| tree | a8ccabb95170bc1dac2822e4d7c7570f05a3e898 /src/client/views/newlightbox/ExploreView | |
| parent | 8d68db4de347e772a5272fd0519fa30c03a30db4 (diff) | |
more eslint
Diffstat (limited to 'src/client/views/newlightbox/ExploreView')
| -rw-r--r-- | src/client/views/newlightbox/ExploreView/utils.ts | 21 |
1 files changed, 11 insertions, 10 deletions
diff --git a/src/client/views/newlightbox/ExploreView/utils.ts b/src/client/views/newlightbox/ExploreView/utils.ts index 7d9cf226d..2d1bd75a9 100644 --- a/src/client/views/newlightbox/ExploreView/utils.ts +++ b/src/client/views/newlightbox/ExploreView/utils.ts @@ -1,20 +1,21 @@ -import { IRecommendation } from "../components"; +import { IRecommendation } from '../components'; export interface IExploreView { - recs?: IRecommendation[], - bounds?: IBounds + recs?: IRecommendation[]; + // eslint-disable-next-line no-use-before-define + bounds?: IBounds; } export const emptyBounds = { max_x: 0, max_y: 0, min_x: 0, - min_y: 0 -} + min_y: 0, +}; export interface IBounds { - max_x: number, - max_y: number, - min_x: number, - min_y: number -}
\ No newline at end of file + max_x: number; + max_y: number; + min_x: number; + min_y: number; +} |
