@authup/core-kit
Version:
Package containing global constants, types & interfaces.
19 lines • 550 B
TypeScript
import type { Client } from '../client';
import type { Realm } from '../realm';
import type { User } from '../user';
import type { Robot } from '../robot';
export interface OAuth2RefreshToken {
id: string;
expires: string;
scope: string | null;
client_id: Client['id'] | null;
client: Client | null;
user_id: User['id'] | null;
user: User | null;
robot_id: Robot['id'] | null;
robot: Robot | null;
access_token: string | null;
realm_id: Realm['id'];
realm: Realm;
}
//# sourceMappingURL=entity.d.ts.map