UNPKG

@authup/core-kit

Version:

Package containing global constants, types & interfaces.

13 lines 398 B
import type { PermissionRelation } from '../permission'; import type { Role } from '../role'; import type { Realm } from '../realm'; export interface RolePermission extends PermissionRelation { 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