linkmore-design
Version:
π πlmη»δ»ΆεΊγπ
10 lines (9 loc) β’ 354 B
TypeScript
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;