stashing code

This commit is contained in:
user
2025-10-20 17:07:41 +03:00
commit f5b99afc8f
890 changed files with 54823 additions and 0 deletions

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,12 @@
import z from "zod";
// The base currency is always USD, so the ratio is relative to that
export const currencyModel = z.object({
id: z.number(),
currency: z.string(),
code: z.string(),
exchangeRate: z.number(),
ratio: z.number(),
});
export type Currency = z.infer<typeof currencyModel>;