This commit is contained in:
2018-12-28 15:18:48 -07:00
parent b3820ca43b
commit 53fa2be4fa
6 changed files with 219 additions and 196 deletions

View File

@@ -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;
}