@vuu-ui/vuu-protocol-types 0.13.111-alpha.1 → 0.13.111
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 +1 -3
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -569,14 +569,12 @@ export declare type RpcResultError = {
|
|
|
569
569
|
type: "ERROR_RESULT";
|
|
570
570
|
errorMessage: string;
|
|
571
571
|
};
|
|
572
|
-
|
|
573
|
-
export declare type RpcResult = RpcResultSuccess | RpcResultError;
|
|
574
572
|
export interface VuuRpcServiceResponse {
|
|
575
573
|
action: unknown;
|
|
576
574
|
error: null | unknown;
|
|
577
575
|
rpcName: TypeAheadMethod;
|
|
578
576
|
type: "RPC_RESPONSE";
|
|
579
|
-
result:
|
|
577
|
+
result: RpcResultSuccess | RpcResultError;
|
|
580
578
|
}
|
|
581
579
|
|
|
582
580
|
export interface VuuViewportRpcTypeaheadRequest extends VuuRpcServiceRequest {
|