mirror of
https://github.com/lifegpc/eh-downloader.git
synced 2026-06-08 06:38:45 +08:00
11 lines
225 B
TypeScript
11 lines
225 B
TypeScript
export type StatusData = {
|
|
ffmpeg_api_enabled: boolean;
|
|
ffmpeg_binary_enabled: boolean;
|
|
meilisearch_enabled: boolean;
|
|
meilisearch?: {
|
|
host: string;
|
|
key: string;
|
|
};
|
|
no_user: boolean;
|
|
};
|