import { DatabaseModel } from '..'; import { UserId } from '../user'; import { UserAgentInfo } from './UserAgentInfo'; export interface BugReport extends DatabaseModel { /** The unique ID of the bug. */ id: BugReportId; /** The ID of the user reporting this bug. */ reporter?: UserId; /** A brief description of the bug. */ description: string; /** A screenshot or other image describing the bug */ imageUrl?: string; /** The web or mobile page in which the bug was found. */ page?: string; /** The UI component in which the bug was found. */ component?: string; /** The user agent for which the bug was found. */ userAgent?: UserAgentInfo; } export declare type BugReportId = string;