feat: add initial command pallete
This commit is contained in:
16
lib/types.ts
Normal file
16
lib/types.ts
Normal file
@@ -0,0 +1,16 @@
|
||||
export interface TMDBMovie {
|
||||
adult: boolean;
|
||||
backdrop_path: string;
|
||||
genre_ids: number[];
|
||||
id: number;
|
||||
original_language: string;
|
||||
original_title: string;
|
||||
overview: string;
|
||||
popularity: number;
|
||||
poster_path: string;
|
||||
release_date: string;
|
||||
title: string;
|
||||
video: boolean;
|
||||
vote_average: number;
|
||||
vote_count: number;
|
||||
}
|
||||
Reference in New Issue
Block a user