UNPKG

fluent-ts-validator

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