UNPKG

linkmore-design

Version:

🌈 πŸš€lmη»„δ»ΆεΊ“γ€‚πŸš€

10 lines (9 loc) β€’ 354 B
import React from 'react'; interface IProps { value: string | number | readonly string[] | undefined; onChange: (value: string | number | readonly string[] | undefined) => void; onKeyDown?: (e: any) => void; handleSave?: (e: any) => void; } declare const InputDataEdit: (props: IProps) => React.JSX.Element; export default InputDataEdit;