@forge/bridge

5.10.0-next.35.9.1-experimental-3311bec
out/events/events.d.ts
~out/events/events.d.tsModified
+4
Index: package/out/events/events.d.ts
===================================================================
--- package/out/events/events.d.ts
+++ package/out/events/events.d.ts
@@ -1,6 +1,10 @@
 import { Subscription } from '../types';
 export declare const events: {
     emit: (event: string, payload?: any) => Promise<void>;
+    emitPublic: (event: string, payload?: any, options?: {
+        allowedRecipients: string[];
+    }) => Promise<void>;
     on: (event: string, callback: (payload?: any) => any) => Promise<Subscription>;
+    onPublic: (event: string, callback: (payload?: any) => any) => Promise<Subscription>;
 };
 //# sourceMappingURL=events.d.ts.map
\ No newline at end of file