@resistdesign/voltra
    Preparing search index...

    Type Alias RemoteProcedureCall<ArgsType>

    The service, path and arguments to use for a remote procedure call.

    type RemoteProcedureCall<ArgsType extends any[] = any[]> = {
        args?: ArgsType;
        path: string;
        serviceConfig: ServiceConfig;
    }

    Type Parameters

    • ArgsType extends any[] = any[]
    Index

    Properties

    args?: ArgsType

    Default args to send when the call auto-runs.

    path: string

    Path to the RPC handler.

    serviceConfig: ServiceConfig

    Configuration for the target service endpoint.