10 lines
124 B
TypeScript
10 lines
124 B
TypeScript
type Video = {
|
|
id: number;
|
|
value: string;
|
|
poster: string;
|
|
title: string;
|
|
desc: string;
|
|
};
|
|
|
|
export type { Video };
|