13 lines
		
	
	
		
			235 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			235 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
| /* Defines the movie entity */
 | |
| export interface IMovie {
 | |
|   approvalRating: number;
 | |
|   hero: string;
 | |
|   imageurl: string;
 | |
|   movieId: number;
 | |
|   mpaa: string;
 | |
|   price: number;
 | |
|   releaseDate: string;
 | |
|   starRating: number;
 | |
|   title: string;
 | |
| }
 |