UNPKG

@atomixdesign/nodepay-core

Version:
11 lines (10 loc) 254 B
export declare type Json = string | number | boolean | null | { [key: string]: Json; } | Json[]; export interface IBaseResponse { status: number; statusText: string; internalErrorCode?: number; data: any; originalResponse: any; }