libs/interfaces/src/auth/refreshTokenResponse.interface.ts
Properties |
access_token |
access_token:
|
Type : string
|
refresh_token |
refresh_token:
|
Type : string
|
status |
status:
|
Type : StatusType
|
import { StatusType } from '../generic/Status.type'
export interface RefreshTokenResponseInterface {
access_token: string
refresh_token: string
status: StatusType
}