prettier
This commit is contained in:
14
src/model.ts
14
src/model.ts
@@ -2,17 +2,17 @@ export const SIZES = [1600, 1200, 800, 600, 400, 200];
|
||||
export const URL = "img/data.json";
|
||||
|
||||
export interface Data {
|
||||
sets: ImageSet[]
|
||||
sets: ImageSet[];
|
||||
}
|
||||
|
||||
export interface ImageSet {
|
||||
location: string;
|
||||
description: string;
|
||||
images: Image[]
|
||||
location: string;
|
||||
description: string;
|
||||
images: Image[];
|
||||
}
|
||||
|
||||
export interface Image {
|
||||
src: string;
|
||||
height: number;
|
||||
width: number;
|
||||
src: string;
|
||||
height: number;
|
||||
width: number;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user