apiKeys.ts 165 B

1234567891011
  1. import { OrgRole } from './acl';
  2. export interface ApiKey {
  3. id: number;
  4. name: string;
  5. role: OrgRole;
  6. }
  7. export interface ApiKeysState {
  8. keys: ApiKey[];
  9. }