Skip to content

@fuel-ts/program v0.94.2Docs


Interface: InvokeFunction()<TArgs, TReturn>

Represents a function that can be invoked.

Type Parameters

TArgs extends any[] = any[]

Type of the function's arguments.

TReturn = any

Type of the function's return value.

InvokeFunction(...args): FunctionInvocationScope<TArgs, TReturn>

Represents a function that can be invoked.

Parameters

• ...args: TArgs

Returns

FunctionInvocationScope<TArgs, TReturn>

Defined in

types.ts:71

Properties

isReadOnly()

isReadOnly: () => boolean

Checks if the function is read-only i.e. it only reads from storage, does not write to it.

Returns

boolean

True if the function is read-only or pure, false otherwise.

Defined in

types.ts:77