@authup/core-kit
Version:
Package containing global constants, types & interfaces.
17 lines • 463 B
TypeScript
import type { Role } from '../role';
import type { Robot } from '../robot';
import type { Realm } from '../realm';
export interface RobotRole {
id: string;
robot_id: string;
role_id: string;
role: Role;
role_realm_id: Realm['id'] | null;
role_realm: Realm | null;
robot: Robot;
robot_realm_id: Realm['id'] | null;
robot_realm: Realm | null;
created_at: string;
updated_at: string;
}
//# sourceMappingURL=entity.d.ts.map