@arkadiuminc/sdk 0.0.30 → 0.0.32
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.
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
|
|
1
|
+
declare type RpcRequest = {
|
|
2
2
|
module: string;
|
|
3
3
|
func: string;
|
|
4
4
|
payload: any[];
|
|
5
|
-
}
|
|
5
|
+
};
|
|
6
6
|
declare class RpcPublisher {
|
|
7
7
|
private rpcCallbacks;
|
|
8
8
|
private target;
|
|
@@ -25,6 +25,7 @@ declare class RpcSubscriber {
|
|
|
25
25
|
private getId;
|
|
26
26
|
private processMessages;
|
|
27
27
|
private sendResponse;
|
|
28
|
+
private sendError;
|
|
28
29
|
}
|
|
29
30
|
export declare function shouldSubscribe(name: string, value: any): boolean;
|
|
30
31
|
export declare const rpcPublisher: RpcPublisher;
|