UNPKG

fixer-wrapper

Version:

Fixer.io Unofficial wrapper for Javascript

20 lines (19 loc) 327 B
interface Irates { rates: {}; } interface IError { error: { code: number; type: string; info: string; }; } export interface ILastest { success: boolean; error?: IError; timestamp?: number; base?: string; date?: string; rates?: Irates; } export {};