abi-util-lite
Version:
A light impletation to parse abi string array to abi json
13 lines • 653 B
TypeScript
import { ParamType } from "../ParamType";
import { ConstructorFragment } from "./ConstructorFragment";
import { JsonFragment } from "../SharedInterface";
export declare class FunctionFragment extends ConstructorFragment {
constant: boolean;
outputs?: Array<ParamType>;
static from(value: FunctionFragment | JsonFragment | string): FunctionFragment;
format(format?: string): string;
static fromObject(value: FunctionFragment | JsonFragment): FunctionFragment;
static fromString(value: string): FunctionFragment;
static isFunctionFragment(value: any): value is FunctionFragment;
}
//# sourceMappingURL=FunctionFragment.d.ts.map