mirror of
https://github.com/lifegpc/eh-downloader.git
synced 2026-06-15 01:54:21 +08:00
12 lines
262 B
TypeScript
12 lines
262 B
TypeScript
export type StatusData = {
|
|
ffmpeg_api_enabled: boolean;
|
|
ffmpeg_binary_enabled: boolean;
|
|
ffprobe_binary_enabled: boolean;
|
|
meilisearch_enabled: boolean;
|
|
meilisearch?: {
|
|
host: string;
|
|
key: string;
|
|
};
|
|
no_user: boolean;
|
|
};
|