Spaces:
Running
Running
File size: 287 Bytes
c5474d5 680788a c5474d5 |
1 2 3 4 5 6 7 8 |
import { z } from "zod";
import { DataResponseSchema,DatasetSchema, StatisticsSchema } from "@/schemas/data";
export type Dataset = z.infer<typeof DatasetSchema>;
export type Statistics = z.infer<typeof StatisticsSchema>;
export type DataResponse = z.infer<typeof DataResponseSchema>;
|