mirror of
https://github.com/Chocobozzz/PeerTube.git
synced 2025-10-05 10:49:28 +02:00
8 lines
139 B
TypeScript
8 lines
139 B
TypeScript
export interface Video {
|
|
id: string;
|
|
name: string;
|
|
description: string;
|
|
magnetUri: string;
|
|
podUrl: string;
|
|
isLocal: boolean;
|
|
}
|