UNPKG

alepha

Version:

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

11 lines (8 loc) 275 B
import { type Static, z } from "alepha"; export const notificationContactPreferencesSchema = z.object({ language: z.text().optional(), exclude: z.array(z.text()), }); export type NotificationContactPreferences = Static< typeof notificationContactPreferencesSchema >;