UNPKG

@authup/server-api

Version:

This is a standalone application.

20 lines 709 B
import type { Client, OAuth2RefreshToken, Realm, Robot, User } from '@authup/core'; import { ClientEntity } from '../client'; import { RobotEntity } from '../robot'; import { RealmEntity } from '../realm'; import { UserEntity } from '../user'; export declare class OAuth2RefreshTokenEntity implements OAuth2RefreshToken { id: string; expires: string; scope: string | null; access_token: string | null; client_id: Client['id'] | null; client: ClientEntity | null; user_id: User['id'] | null; user: UserEntity | null; robot_id: Robot['id'] | null; robot: RobotEntity | null; realm_id: Realm['id'] | null; realm: RealmEntity; } //# sourceMappingURL=entity.d.ts.map