types.tsx 258 B

123456789101112
  1. import type {API_ACCESS_SCOPES} from 'sentry/constants';
  2. type Scope = (typeof API_ACCESS_SCOPES)[number];
  3. export type DeprecatedApiKey = {
  4. allowed_origins: string;
  5. id: string;
  6. key: string;
  7. label: string;
  8. scope_list: Scope[];
  9. status: number;
  10. };