Added schema types

This commit is contained in:
AloeSapling 2025-08-18 20:08:57 +02:00
parent 36888a4aaa
commit f0396ab5be

View file

@ -73,4 +73,7 @@ export const BlueMarbleJSON = z.object({
coords: z.string(),
})).optional()
}))
})
})
export type TCharityJSON = z.infer<typeof CharityJSON>;
export type TBlueMarbleJSON = z.infer<typeof BlueMarbleJSON>;