solive-core
Version:
Solidity Monaco Editor Core Library
10 lines • 375 B
TypeScript
/// <reference types="react" />
import { ABIParameter } from "solive-compiler-utils";
type TProps = {
inputs: ABIParameter[];
onChange?: (value: any) => void;
value?: any;
};
declare const AbiInput: import("react").ForwardRefExoticComponent<TProps & import("react").RefAttributes<unknown>>;
export default AbiInput;
//# sourceMappingURL=AbiInput.d.ts.map