UNPKG

@authup/core-kit

Version:

Package containing global constants, types & interfaces.

13 lines 436 B
import type { IdentityProviderBaseMapping } from '../identity-provider'; import type { Role } from '../role'; import type { Realm } from '../realm'; export interface IdentityProviderRoleMapping extends IdentityProviderBaseMapping { id: string; created_at: Date; updated_at: Date; role_id: string; role: Role; role_realm_id: Realm['id'] | null; role_realm: Realm | null; } //# sourceMappingURL=entity.d.ts.map