Skip to content
  • This project
    • Loading...
  • Sign in

Luciano Barletta / TicketTech

Go to a project
Toggle navigation
Toggle navigation pinning
  • Projects
  • Groups
  • Snippets
  • Help
  • Project
  • Activity
  • Repository
  • Pipelines
  • Graphs
  • Issues 0
  • Merge Requests 0
  • Wiki
  • Network
  • Create a new issue
  • Jobs
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Network
  • Compare
  • Branches
  • Tags
Switch branch/tag
  • TicketTech
  • src
  • app
  • models
  • typedefs.ts
  • Luciano Barletta's avatar
    add type definitions in src/app/models, make Observable with cache behaviour · 474c9b26
    Luciano Barletta committed 2020-03-06 19:51:26 +0000
    474c9b26 Browse Files
typedefs.ts 298 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
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 {
	
}