Barely working

This commit is contained in:
2021-12-30 01:30:40 +03:00
parent e6d6dc4ca3
commit f9f2efcad0
24 changed files with 1237 additions and 160 deletions

9
src/interfaces.ts Normal file
View File

@@ -0,0 +1,9 @@
export interface Room {
id: string;
magnet: string;
createdAt: Date;
movie?: string;
downloaded?: boolean;
downloadedAt?: Date;
position: number;
}