@wailsio/runtime
    Preparing search index...

    Type Alias CallOptions

    CallOptions:
        | { args: any[]; methodID: number; methodName?: never }
        | { args: any[]; methodID?: never; methodName: string }

    Holds all required information for a binding call. May provide either a method ID or a method name, but not both.

    Type Declaration

    • { args: any[]; methodID: number; methodName?: never }
      • args: any[]

        Arguments to be passed into the bound method.

      • methodID: number

        The numeric ID of the bound method to call.

      • OptionalmethodName?: never

        The fully qualified name of the bound method to call.

    • { args: any[]; methodID?: never; methodName: string }
      • args: any[]

        Arguments to be passed into the bound method.

      • OptionalmethodID?: never

        The numeric ID of the bound method to call.

      • methodName: string

        The fully qualified name of the bound method to call.