typedefs.ts
298 Bytes
export interface Show {
images : Image[];
plays : Play[];
}
export interface Play {
date : string; // date class?
time : string; // time class?
description : string;
theater: Theater;
}
export interface Image {
id : number;
url : string;
name : string;
}
export interface Theater {
}