UNPKG

@tsed/schema

Version:
16 lines (15 loc) 341 B
/** * Declare a new string model with `format: email`. * * See @@JsonSchema@@ to discover available methods. * * ### Example * * ```typescript * const schema = email(); * // Results in: { type: "string", format: "email" } * ``` * * @schemaFunctional */ export declare function email(): import("../index.js").JsonSchema<string>;