UNPKG

394 BTypeScriptView Raw
1import { Arbitrary } from '../check/arbitrary/definition/Arbitrary';
2/**
3 * For email address
4 *
5 * According to {@link https://www.ietf.org/rfc/rfc2821.txt | RFC 2821},
6 * {@link https://www.ietf.org/rfc/rfc3696.txt | RFC 3696} and
7 * {@link https://www.ietf.org/rfc/rfc5322.txt | RFC 5322}
8 *
9 * @remarks Since 1.14.0
10 * @public
11 */
12export declare function emailAddress(): Arbitrary<string>;