export const ExchangeRateTimeSeries = S.Struct({
"Time Series FX (Daily)": S.Record({
key: S.Date,
value: S.Struct({ close: S.Number.pipe(S.nonNegative()) }).pipe(S.pluck("close")),
}),
});
type t = typeof ExchangeRateTimeSeries.Type
export const ExchangeRateTimeSeries = S.Struct({
"Time Series FX (Daily)": S.Record({
key: S.Date,
value: S.Struct({ close: S.Number.pipe(S.nonNegative()) }).pipe(S.pluck("close")),
}),
});
type t = typeof ExchangeRateTimeSeries.Type