UNPKG

alepha

Version:

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

13 lines (10 loc) 265 B
import { type Static, z } from "alepha"; /** * Parameter names list response schema. */ export const parameterNamesResponseSchema = z.object({ names: z.array(z.text()), }); export type ParameterNamesResponse = Static< typeof parameterNamesResponseSchema >;