swarpc - v0.10.0
    Preparing search index...

    Type Alias SwarpcClient<Procedures>

    SwarpcClient: { "[zProcedures]": Procedures } & {
        [F in keyof Procedures]: ClientMethod<Procedures[F]>
    }

    The sw&rpc client instance, which provides methods to call procedures. Each property of the procedures map will be a method, that accepts an input, an optional onProgress callback and an optional request ID. If you want to be able to cancel the request, you can set the request's ID yourself, and call .abort(requestId, reason) on the client instance to cancel it.

    Type Parameters