export type Config = { sources: string[]; query: string; mapper: string; databaseFile: string; backend: Record; }; export type BackendSettings = { enable?: boolean; }; export type SupportedBackends = 'ntfy.sh'; export type BackendConfig = { backend: SupportedBackends; settings: BackendSettings; }