@timescaledb/schemas
Version:
This package contains Zod schemas and types for all TimescaleDB objects.
13 lines (12 loc) • 453 B
TypeScript
import { z } from 'zod';
export declare const CreateExtensionOptionsSchema: z.ZodObject<{
should_cascade: z.ZodOptional<z.ZodBoolean>;
version: z.ZodOptional<z.ZodString>;
}, "strict", z.ZodTypeAny, {
should_cascade?: boolean | undefined;
version?: string | undefined;
}, {
should_cascade?: boolean | undefined;
version?: string | undefined;
}>;
export type CreateExtensionOptions = z.infer<typeof CreateExtensionOptionsSchema>;