@vuu-ui/vuu-protocol-types 0.13.110 → 0.13.111-alpha.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.d.ts +3 -1
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -569,12 +569,14 @@ export declare type RpcResultError = {
|
|
|
569
569
|
type: "ERROR_RESULT";
|
|
570
570
|
errorMessage: string;
|
|
571
571
|
};
|
|
572
|
+
|
|
573
|
+
export declare type RpcResult = RpcResultSuccess | RpcResultError;
|
|
572
574
|
export interface VuuRpcServiceResponse {
|
|
573
575
|
action: unknown;
|
|
574
576
|
error: null | unknown;
|
|
575
577
|
rpcName: TypeAheadMethod;
|
|
576
578
|
type: "RPC_RESPONSE";
|
|
577
|
-
result:
|
|
579
|
+
result: RpcResult;
|
|
578
580
|
}
|
|
579
581
|
|
|
580
582
|
export interface VuuViewportRpcTypeaheadRequest extends VuuRpcServiceRequest {
|