Files
graff.estate-nextjs/src/types/Video.ts
T
2024-06-06 12:59:15 +05:00

10 lines
124 B
TypeScript

type Video = {
id: number;
value: string;
poster: string;
title: string;
desc: string;
};
export type { Video };