GetRPCClientInterface | WebHare Platform SDK
WebHare Platform SDK
    Preparing search index...

    Type Alias GetRPCClientInterface<Service>

    GetRPCClientInterface: Service extends keyof KnownRPCServices
        ? ExtractInterface<KnownRPCServices[Service]>
        : Service extends object ? ExtractInterface<Service> : never

    Get the client interface type as would be returned by createClient

    Type Parameters