export interface Config { port: number; password: string | null; tunnel: boolean; tunnelDomain: string | null; pollRate: number; theme: 'dark' | 'light'; verbose: boolean; cmuxPath: string; } export const DEFAULT_CONFIG: Config = { port: 9870, password: null, tunnel: true, tunnelDomain: null, pollRate: 200, theme: 'dark', verbose: false, cmuxPath: 'cmux', };