UNPKG

@authup/core-kit

Version:

Package containing global constants, types & interfaces.

14 lines 366 B
import type { Policy } from '../policy'; import type { Realm } from '../realm'; export interface PolicyAttribute { id: string; name: string; value: string | null; realm_id: Policy['id'] | null; realm: Realm | null; policy_id: Policy['id']; policy: Policy; created_at: Date; updated_at: Date; } //# sourceMappingURL=entity.d.ts.map