icynet-admin/lib/types/token-response.interface.ts

6 lines
108 B
TypeScript
Raw Normal View History

2022-08-29 18:09:28 +00:00
export interface OAuth2TokenDto {
access_token: string;
refresh_token?: string;
expires_in: number;
}