UNPKG

alepha

Version:

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

14 lines (11 loc) 250 B
import { type Static, z } from "alepha"; /** * Parameter status enum schema. */ export const parameterStatusSchema = z.enum([ "expired", "current", "next", "future", ]); export type ParameterStatus = Static<typeof parameterStatusSchema>;