7 lines
102 B
TypeScript
7 lines
102 B
TypeScript
export interface WatchedVideo
|
|
{
|
|
_id: string,
|
|
url: string,
|
|
title: string,
|
|
date: Date
|
|
}
|