utils.tsx 332 B

123456789101112131415
  1. import type {Organization} from 'sentry/types';
  2. import type {EventData} from 'sentry/utils/discover/eventView';
  3. export const tenSecondInMs = 10 * 1000;
  4. export enum ContextType {
  5. ISSUE = 'issue',
  6. RELEASE = 'release',
  7. EVENT = 'event',
  8. }
  9. export type BaseContextProps = {
  10. dataRow: EventData;
  11. organization: Organization;
  12. };