UNPKG

@saleor/macaw-ui

Version:

Saleor's UI component library

5 lines (3 loc) 188 B
import { ChangeEvent } from 'react'; export type InputValue = string | number | readonly string[] | undefined; export type ChangeHandler = (event: ChangeEvent<HTMLInputElement>) => void;