UNPKG

@timescaledb/schemas

Version:

This package contains Zod schemas and types for all TimescaleDB objects.

13 lines (12 loc) 277 B
import { z } from 'zod'; export declare const TimeRangeSchema: z.ZodObject<{ start: z.ZodDate; end: z.ZodDate; }, "strip", z.ZodTypeAny, { start: Date; end: Date; }, { start: Date; end: Date; }>; export type TimeRange = z.infer<typeof TimeRangeSchema>;