mirror of
https://github.com/Tzahi12345/YoutubeDL-Material.git
synced 2026-03-21 20:20:57 +03:00
Further cleanup to API and models
This commit is contained in:
@@ -2,11 +2,9 @@
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
|
||||
import type { file } from './file';
|
||||
|
||||
export type GetFileFormatsResponse = {
|
||||
success: boolean;
|
||||
result: (file & {
|
||||
result: {
|
||||
formats?: Array<any>;
|
||||
});
|
||||
};
|
||||
};
|
||||
@@ -2,7 +2,6 @@
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
|
||||
import type { file } from './file';
|
||||
import type { Subscription } from './Subscription';
|
||||
import type { UserPermission } from './UserPermission';
|
||||
|
||||
@@ -10,14 +9,6 @@ export type User = {
|
||||
uid?: string;
|
||||
name?: string;
|
||||
passhash?: string;
|
||||
files?: {
|
||||
audio?: Array<file>;
|
||||
video?: Array<file>;
|
||||
};
|
||||
playlists?: {
|
||||
audio?: Array<file>;
|
||||
video?: Array<file>;
|
||||
};
|
||||
subscriptions?: Array<Subscription>;
|
||||
created?: number;
|
||||
role?: string;
|
||||
|
||||
Reference in New Issue
Block a user