interface ProjectLocalConfigPlatformField { address?: string baseURL?: string username?: string password?: string } interface ProjectLocalConfigLocalField { id: string language: string debug_mode?: boolean timeout_sec: number organization_uuid?: string team_uuid?: string web_service_port?: string | number web_service_ip?: string user_uuid?: string log_in_local?: boolean log_level: string file_in_local?: boolean mysql_in_local?: boolean mysql_user_name?: string mysql_user_password?: string mysql_database_name?: string mysql_host?: string mysql_port?: string instance_uuid?: string dangerously_accept_unauthorized_https?: boolean } interface ProjectLocalConfig { platform: ProjectLocalConfigPlatformField local: ProjectLocalConfigLocalField } export type { ProjectLocalConfig, ProjectLocalConfigPlatformField, ProjectLocalConfigLocalField }