interface HashInputProps {
    chain: Chain;
    debounceTime?: number;
    onLoading?: ((loading: boolean) => void);
    onSearch: ((result: null | DetectedHash) => void);
    renderInput?: ((props: DetailedHTMLProps<InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>) => ReactElement<any, string | JSXElementConstructor<any>>);
    value?: string;
}

Hierarchy

  • ComponentProps<"input">
    • HashInputProps

Properties

chain: Chain
debounceTime?: number
onLoading?: ((loading: boolean) => void)
onSearch: ((result: null | DetectedHash) => void)
renderInput?: ((props: DetailedHTMLProps<InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>) => ReactElement<any, string | JSXElementConstructor<any>>)
value?: string