UNPKG

fluent-ts-validator

Version:
8 lines (7 loc) 302 B
import { PropertyValidator } from "../PropertyValidator"; import { FqdnOptions } from "../../shared"; export declare class IsFqdnValidator implements PropertyValidator<string> { private options; constructor(options?: FqdnOptions | undefined); isValid(input: string | undefined): boolean; }