UNPKG

@documment/mmp.core

Version:

This project was generated with [Angular CLI](https://github.com/angular/angular-cli) version 1.0.1.

14 lines (13 loc) 326 B
export interface IOAuthResponse { accessToken: string; tokenType: string; expiresIn: number; refreshToken: string; } export declare class OAuthResponse implements IOAuthResponse { accessToken: string; tokenType: string; expiresIn: number; refreshToken: string; constructor(params?: any); }