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