UNPKG

fluent-ts-validator

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