first commit
Some checks failed
Build / run (push) Has been cancelled

This commit is contained in:
maher
2025-10-29 11:42:25 +01:00
commit 703f50a09d
4595 changed files with 385164 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
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;
}