/** @public */ export type SentryPlatform = 'javascript' | 'javascript-react' | string; /** @public */ export type EventPoint = number[]; /** @public */ export type SentryProject = { platform: SentryPlatform; slug: string; id: string; name: string; }; /** @public */ export type SentryIssueMetadata = { function?: string; type?: string; value?: string; filename?: string; }; /** @public */ export type SentryIssue = { platform: SentryPlatform; lastSeen: string; numComments: number; userCount: number; stats: { '24h'?: EventPoint[]; '14d'?: EventPoint[]; }; culprit: string; title: string; id: string; assignedTo: any; logger: any; type: string; annotations: any[]; metadata: SentryIssueMetadata; status: string; subscriptionDetails: any; isPublic: boolean; hasSeen: boolean; shortId: string; shareId: string | null; firstSeen: string; count: string; permalink: string; level: string; isSubscribed: boolean; isBookmarked: boolean; project: SentryProject; statusDetails: any; }; /** @public */ export type SentryApiError = { detail: string; };