mirror of
https://github.com/Tzahi12345/YoutubeDL-Material.git
synced 2026-04-15 19:31:30 +03:00
Fixed compilation issue
This commit is contained in:
@@ -2742,7 +2742,7 @@ components:
|
|||||||
error:
|
error:
|
||||||
type: string
|
type: string
|
||||||
schedule:
|
schedule:
|
||||||
type: object
|
$ref: '#/components/schemas/Schedule'
|
||||||
options:
|
options:
|
||||||
type: object
|
type: object
|
||||||
Schedule:
|
Schedule:
|
||||||
|
|||||||
@@ -2,6 +2,8 @@
|
|||||||
/* tslint:disable */
|
/* tslint:disable */
|
||||||
/* eslint-disable */
|
/* eslint-disable */
|
||||||
|
|
||||||
|
import type { Schedule } from './Schedule';
|
||||||
|
|
||||||
export type Task = {
|
export type Task = {
|
||||||
key: string;
|
key: string;
|
||||||
title?: string;
|
title?: string;
|
||||||
@@ -11,6 +13,6 @@ export type Task = {
|
|||||||
confirming: boolean;
|
confirming: boolean;
|
||||||
data: Record<string, any>;
|
data: Record<string, any>;
|
||||||
error: string;
|
error: string;
|
||||||
schedule: Record<string, any>;
|
schedule: Schedule;
|
||||||
options?: Record<string, any>;
|
options?: Record<string, any>;
|
||||||
};
|
};
|
||||||
|
|||||||
Reference in New Issue
Block a user