interface FQDNOptions {
    allowNumericTLD?: boolean;
    allowTrailingDot?: boolean;
    allowUnderscores?: boolean;
    allowWildcard?: boolean;
    ignoreMaxLength?: boolean;
    requireTLD?: boolean;
}

Hierarchy

Properties

allowNumericTLD?: boolean
false
allowTrailingDot?: boolean
false
allowUnderscores?: boolean
false
allowWildcard?: boolean

If allow domain starting with *. (e.g. *.example.com or *.shop.example.com).

false
ignoreMaxLength?: boolean
false
requireTLD?: boolean
true