mirror of
https://github.com/Tria-plc/emaui.git
synced 2026-08-27 15:30:57 +00:00
7 lines
259 B
TypeScript
7 lines
259 B
TypeScript
import { FormErrors, FormValidateInput } from '../types';
|
|
export declare const formRootRule: unique symbol;
|
|
export declare function validateValues<T>(validate: FormValidateInput<T> | undefined, values: T): {
|
|
hasErrors: boolean;
|
|
errors: FormErrors;
|
|
};
|