Files
mtdb_movie/resources/client/titles/models/person.ts
T
maher 511fad8199
Build / run (push) Has been cancelled
Initial commit
2026-05-14 13:42:10 +02:00

21 lines
418 B
TypeScript
Executable File

import {PersonCredit} from './title';
export const PERSON_MODEL = 'person';
export interface Person {
id: number;
name: string;
poster?: string;
known_for?: string;
gender?: string;
birth_date: string;
death_date: string;
birth_place: string;
primary_credit?: PersonCredit;
views?: number;
popularity?: number;
updated_at?: string;
description: string;
model_type: typeof PERSON_MODEL;
}