Interface CallOptions

interface CallOptions {
    args: any[];
    methodID: undefined | number;
    methodName: undefined | string;
}

Properties

args: any[]

Arguments to be passed into the bound method.

methodID: undefined | number

The numeric ID of the bound method to call.

methodName: undefined | string

The fully qualified name of the bound method to call.

Generated using TypeDoc