alepha
Version:
Easy-to-use modern TypeScript framework for building many kind of applications.
14 lines (11 loc) • 358 B
text/typescript
import { type Static, z } from "alepha";
import { parameterResponseSchema } from "./parameterResponseSchema.ts";
/**
* Parameter history response schema.
*/
export const parameterHistoryResponseSchema = z.object({
versions: z.array(parameterResponseSchema),
});
export type ParameterHistoryResponse = Static<
typeof parameterHistoryResponseSchema
>;