UNPKG
fixer-wrapper
Version:
latest (1.1.4)
1.1.4
1.1.3
1.0.3
1.0.2
1.0.1
1.0.0
Fixer.io Unofficial wrapper for Javascript
fixer-wrapper
/
dist
/
interfaces
/
Lastest.d.ts
20 lines
(19 loc)
•
327 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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 {};