This repository has been archived on 2026-05-01. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
PolyNotFound/src/app/utils/interfaces/watchedVideo.ts
2021-10-30 16:18:57 +02:00

7 lines
102 B
TypeScript

export interface WatchedVideo
{
_id: string,
url: string,
title: string,
date: Date
}