types.tsx 352 B

123456789101112131415
  1. import type {
  2. GroupStatusResolution,
  3. MarkReviewed,
  4. PriorityLevel,
  5. TagValue,
  6. } from 'sentry/types';
  7. export type TagValueLoader = (key: string, search: string) => Promise<TagValue[]>;
  8. export type IssueUpdateData =
  9. | {isBookmarked: boolean}
  10. | {isSubscribed: boolean}
  11. | {priority: PriorityLevel}
  12. | MarkReviewed
  13. | GroupStatusResolution;