UNPKG

box-node-sdk

Version:

Official SDK for Box Platform APIs

13 lines 500 B
import { SerializedData } from '../serialization/json'; export interface OAuth2Error { /** * The type of the error returned. */ readonly error?: string; /** * The type of the error returned. */ readonly errorDescription?: string; readonly rawData?: SerializedData; } export declare function serializeOAuth2Error(val: OAuth2Error): SerializedData; export declare function deserializeOAuth2Error(val: SerializedData): OAuth2Error; //# sourceMappingURL=oAuth2Error.d.ts.map