@fuel-ts/abi-typegen
Version:
Generates Typescript definitions from Sway ABI Json files
15 lines • 417 B
TypeScript
import type { IRawAbiFunction } from './IRawAbiFunction';
import type { IType } from './IType';
export interface IFunctionAttributes {
inputs: string;
output: string;
prefixedInputs: string;
}
export interface IFunction {
types: IType[];
name: string;
rawAbiFunction: IRawAbiFunction;
attributes: IFunctionAttributes;
getDeclaration(): string;
}
//# sourceMappingURL=IFunction.d.ts.map