UNPKG

fluent-ts-validator

Version:
8 lines (7 loc) 307 B
import { PropertyValidator } from "../PropertyValidator"; import { MobilePhoneLocale } from "../../shared/"; export declare class IsMobilePhoneValidator implements PropertyValidator<string> { private locale; constructor(locale: MobilePhoneLocale); isValid(input: string | undefined): boolean; }