@saleor/macaw-ui
Version:
Saleor's UI component library
7 lines (5 loc) • 325 B
TypeScript
import { InputValue } from './types';
import { InputProps } from './Input';
import { KeyboardEvent } from 'react';
export declare const checkIfValidNumberInput: (event: KeyboardEvent<HTMLElement>) => false | void;
export declare const isInputTyped: (type: InputProps["type"], value: InputValue, active: boolean) => boolean;