12 lines
219 B
TypeScript
12 lines
219 B
TypeScript
|
|
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;
|
||
|
|
}
|