fluent-ts-validator
Version:
A fluent validator written in TypeScript
8 lines (7 loc) • 314 B
TypeScript
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;
}