import { Error } from '../common'; export type Storage = { id: number; name: string; display: string; type: 'cloud storage' | 'version control system'; provider_id: string; username: string | null; email: string | null; display_name: string | null; authenticated: boolean; expired: boolean; enabled: boolean; protected: boolean; autoupgrade: string; origin_url: string; installable: boolean; install_url: string | null; error: Error | null; updated: Date; };