import { PlatformErrorCodes } from '../schemas/index'; interface ServerResponse { ResponseTime: number; } /** * A general interface for a Bungie API response */ export interface BungieNetResponse extends ServerResponse { readonly Response: R; readonly ErrorCode: PlatformErrorCodes; readonly ThrottleSeconds: number; readonly ErrorStatus: string; readonly Message: string; readonly MessageData: { [key: string]: string; }; readonly DetailedErrorTrace: string; } export {};