@bshg/validation
Version:
Validation Library for TypeScript projects
11 lines (10 loc) • 320 B
TypeScript
import { ValidatorOptions } from "../utils";
import { RegexType } from "../utils/regex";
import { LocalType } from "../messages";
type LibConfig = {
validatorOptions?: ValidatorOptions;
regex?: Partial<RegexType>;
local?: LocalType;
};
export declare const configure: (config: LibConfig) => void;
export {};