UNPKG

@sidequest/dashboard

Version:

@sidequest/dashboard is the web dashboard for Sidequest, a distributed background job queue system.

14 lines (11 loc) 262 B
import { BackendConfig } from '@sidequest/backend'; interface DashboardConfig { backendConfig?: BackendConfig; enabled?: boolean; port?: number; auth?: { user: string; password: string; }; } export type { DashboardConfig };