UNPKG

400 BTypeScriptView Raw
1import { Arbitrary } from '../check/arbitrary/definition/Arbitrary';
2/**
3 * For fragments of an URI (web included)
4 *
5 * According to {@link https://www.ietf.org/rfc/rfc3986.txt | RFC 3986}
6 *
7 * eg.: In the url `https://domain/plop?page=1#hello=1&world=2`, `?hello=1&world=2` are query parameters
8 *
9 * @remarks Since 1.14.0
10 * @public
11 */
12export declare function webFragments(): Arbitrary<string>;