UNPKG

@tmlmobilidade/types

Version:
15 lines (14 loc) 337 B
/* * */ import { z } from 'zod'; /* * */ export const HttpStatusValues = [ '200', // OK '201', // Created '204', // No Content '400', // Bad Request '401', // Unauthorized '403', // Forbidden '404', // Not Found '500', // Internal Server Error ]; export const HttpStatusSchema = z.enum(HttpStatusValues);