UNPKG

rsuite

Version:

A suite of react components

9 lines (8 loc) 329 B
import { MaskType, ConfigType, MaskFunctionType } from './types'; export declare function isArray(value: any): boolean; export default function conformToMask(rawValue?: string, mask?: MaskType | MaskFunctionType | any, config?: ConfigType): { conformedValue: string; meta: { someCharsRejected: boolean; }; };