UNPKG

alepha

Version:

Easy-to-use modern TypeScript framework for building many kind of applications.

14 lines (11 loc) 361 B
import { type Static, z } from "alepha"; import { parameterResponseSchema } from "./parameterResponseSchema.ts"; /** * Parameter version response schema. */ export const parameterVersionResponseSchema = z.object({ parameter: parameterResponseSchema.optional(), }); export type ParameterVersionResponse = Static< typeof parameterVersionResponseSchema >;