UNPKG

@authup/server-api

Version:

This is a standalone application.

17 lines 442 B
import type { Robot, User } from '@authup/core'; import { Realm } from '@authup/core'; export declare class RobotEntity implements Robot { id: string; secret: string; name: string; description: string; active: boolean; created_at: Date; updated_at: Date; user_id: User['id'] | null; user: User | null; realm_id: Realm['id']; realm: Realm; setName(): void; } //# sourceMappingURL=entity.d.ts.map