UNPKG

@cn-ui/core

Version:

The @cn-ui/core is a collection of UI components and utilities for building modern web applications with SolidJS.

7 lines (6 loc) 288 B
import Schema from "async-validator"; import { type RootColumnDef } from "./utils"; /** 用于表单校验的规则构建 */ export declare const useValidator: <T, D>(config: RootColumnDef<T, D>[], originData: T, index: number) => { validator: import("solid-js").Accessor<Schema>; };