mirror of https://github.com/buster-so/buster.git
7 lines
212 B
TypeScript
7 lines
212 B
TypeScript
|
import { z } from 'zod';
|
||
|
import { CurrencySchema } from './currency.types';
|
||
|
|
||
|
export const CurrencyResponseSchema = z.array(CurrencySchema);
|
||
|
|
||
|
export type CurrencyResponse = z.infer<typeof CurrencyResponseSchema>;
|