diff options
| author | bobzel <zzzman@gmail.com> | 2024-05-03 10:55:33 -0400 |
|---|---|---|
| committer | bobzel <zzzman@gmail.com> | 2024-05-03 10:55:33 -0400 |
| commit | f927a585c75a20629379bcb34d1483c0ca9d8db9 (patch) | |
| tree | f070e9e64ecaf251e6708b8ce4d722f121a6d039 /src/client/views/newlightbox/ExploreView | |
| parent | 723c8b33ade753764d1d02b130c189fb65e20425 (diff) | |
| parent | 9b424c94d7a89950e9cf3f72e684bd15a61e87ae (diff) | |
merged with new version of master
Diffstat (limited to 'src/client/views/newlightbox/ExploreView')
| -rw-r--r-- | src/client/views/newlightbox/ExploreView/index.ts | 2 | ||||
| -rw-r--r-- | src/client/views/newlightbox/ExploreView/utils.ts | 21 |
2 files changed, 12 insertions, 11 deletions
diff --git a/src/client/views/newlightbox/ExploreView/index.ts b/src/client/views/newlightbox/ExploreView/index.ts index bf94eedcd..f2ebf511f 100644 --- a/src/client/views/newlightbox/ExploreView/index.ts +++ b/src/client/views/newlightbox/ExploreView/index.ts @@ -1 +1 @@ -export * from './ExploreView'
\ No newline at end of file +export * from './ExploreView'; 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; +} |
