import { User } from './user'; export interface Status { id?: number; sha?: string; ref?: string; status?: 'pending' | 'running' | 'success' | 'failed' | 'canceled'; name?: string; target_url?: null | string; description?: null | string; created_at?: string; started_at?: null | string; finished_at?: null | string; allow_failure?: boolean; coverage?: null | any; author?: User; } //# sourceMappingURL=status.d.ts.map