Skip to main content
Module

x/uriware/index.ts>RegExpUri.Options

Yet another RFC3986-aware URI utilities.
Go to Latest
type alias RegExpUri.Options
import { type RegExpUri } from "https://deno.land/x/uriware@v0.0.2/index.ts";
const { Options } = RegExpUri;
definition: { schemes: Whitelist<string> | Blacklist<string>; domains: Whitelist<string> | Blacklist<string>; requireScheme: "always" | "never" | undefined; requireDoubleSlash: "always" | "never" | undefined; requireAuthority: "always" | "never" | undefined; usePreferredDomainNameSyntax: boolean; allowKnownTldsOnly: boolean; allowRelative: boolean; allowEmptyQuery: boolean; allowEmptyFragment: boolean; exact: boolean; groups: "all" | "outmost" | "none"; }