UNPKG

@mantine/form

Version:

Mantine form management library

8 lines (7 loc) 250 B
import type { SyncReactNode } from '../types'; interface IsInRangePayload { min?: number; max?: number; } export declare function isInRange({ min, max }: IsInRangePayload, error?: SyncReactNode): (value: unknown) => SyncReactNode; export {};