@iyonger/aptos-web3-bip44.js
Version:
Web3 SDK For Aptos
40 lines • 1.34 kB
TypeScript
export declare const $MoveFunction: {
readonly description: "Move function";
readonly properties: {
readonly name: {
readonly type: "IdentifierWrapper";
readonly isRequired: true;
};
readonly visibility: {
readonly type: "MoveFunctionVisibility";
readonly isRequired: true;
};
readonly is_entry: {
readonly type: "boolean";
readonly description: "Whether the function can be called as an entry function directly in a transaction";
readonly isRequired: true;
};
readonly generic_type_params: {
readonly type: "array";
readonly contains: {
readonly type: "MoveFunctionGenericTypeParam";
};
readonly isRequired: true;
};
readonly params: {
readonly type: "array";
readonly contains: {
readonly type: "MoveType";
};
readonly isRequired: true;
};
readonly return: {
readonly type: "array";
readonly contains: {
readonly type: "MoveType";
};
readonly isRequired: true;
};
};
};
//# sourceMappingURL=$MoveFunction.d.ts.map