Interface InvokeFunction<TArgs, TReturn>

Represents a function that can be invoked.

interface InvokeFunction<TArgs, TReturn> {
    isReadOnly: (() => boolean);
    (...args: TArgs): FunctionInvocationScope<TArgs, TReturn>;
}

Type Parameters

  • TArgs extends any[] = any[]

    Type of the function's arguments.

  • TReturn = any

    Type of the function's return value.

Properties

Properties

isReadOnly: (() => boolean)

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

Type declaration

    • (): boolean
    • Returns boolean

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