From f0396ab5beb91b66d3aceb9ee406b99270523c2b Mon Sep 17 00:00:00 2001 From: AloeSapling Date: Mon, 18 Aug 2025 20:08:57 +0200 Subject: [PATCH] Added schema types --- types/schemas.ts | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/types/schemas.ts b/types/schemas.ts index fb9e855..28a6f6d 100644 --- a/types/schemas.ts +++ b/types/schemas.ts @@ -73,4 +73,7 @@ export const BlueMarbleJSON = z.object({ coords: z.string(), })).optional() })) -}) \ No newline at end of file +}) + +export type TCharityJSON = z.infer; +export type TBlueMarbleJSON = z.infer; \ No newline at end of file