UNPKG

ff-validator

Version:
12 lines (11 loc) 287 B
import { IValidFn } from './core'; interface IPlainObject<GValue = any> { [p: string]: GValue; } export default function <GValue = any, GAllValues = GValue, GMeta = GValue>( allValues: IPlainObject, allRules: IPlainObject<(IValidFn | null)[]> ): { [p: string]: string; }; export {};