Files
ski/src/model.ts
Aaron Gutierrez 57d1451579 bigger == better
2022-01-23 18:38:47 -08:00

20 lines
320 B
TypeScript

export const SIZES = [2400, 1600, 1200, 800, 600, 400, 200];
export const dataUrl = "img/data.json";
export interface Data {
sets: ImageSet[];
}
export interface ImageSet {
location: string;
description: string;
images: Image[];
}
export interface Image {
src: string;
height: number;
width: number;
}