@authup/core-kit
Version:
Package containing global constants, types & interfaces.
17 lines • 461 B
TypeScript
import type { Client } from '../client';
import type { Realm } from '../realm';
export interface Role {
id: string;
built_in: boolean;
name: string;
display_name: string | null;
target: string | null;
description: string | null;
client_id: Client['id'] | null;
client: Client | null;
realm_id: Realm['id'] | null;
realm: Realm | null;
created_at: string;
updated_at: string;
}
//# sourceMappingURL=entity.d.ts.map