UNPKG

440 BTypeScriptView Raw
1import { Arbitrary } from '../check/arbitrary/definition/Arbitrary';
2/**
3 * For valid IP v4 according to WhatWG
4 *
5 * Following {@link https://url.spec.whatwg.org/ | WhatWG}, the specification for web-browsers
6 *
7 * There is no equivalent for IP v6 according to the {@link https://url.spec.whatwg.org/#concept-ipv6-parser | IP v6 parser}
8 *
9 * @remarks Since 1.17.0
10 * @public
11 */
12export declare function ipV4Extended(): Arbitrary<string>;