@authup/core-kit
Version:
Package containing global constants, types & interfaces.
14 lines • 355 B
TypeScript
import type { Realm } from '../realm';
import type { Role } from '../role';
export interface RoleAttribute {
id: string;
name: string;
value: string | null;
role_id: Role['id'];
role: Role;
realm_id: Realm['id'] | null;
realm: Realm | null;
created_at: string;
updated_at: string;
}
//# sourceMappingURL=entity.d.ts.map