/** * Settings data shapes for Onebox */ export interface ISettings { cloudflareToken: string; cloudflareZoneId: string; dcrouterGatewayUrl: string; dcrouterGatewayApiToken: string; dcrouterGatewayClientId: string; /** @deprecated Use dcrouterGatewayClientId. */ dcrouterWorkHosterId: string; dcrouterTargetHost: string; dcrouterTargetPort: number; autoRenewCerts: boolean; renewalThreshold: number; acmeEmail: string; httpPort: number; httpsPort: number; forceHttps: boolean; }