turkmentv_front/typings/video.type.ts

12 lines
219 B
TypeScript
Raw Permalink Normal View History

2024-08-19 12:44:56 +00:00
import { ISource } from './source.type';
export interface IVideo {
id: number;
video_id?: string;
views?: number | string | null;
title: string;
img: string | null;
premium?: boolean;
slides?: boolean;
}