redweb-client 0.1.0 → 0.2.0

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.
@@ -0,0 +1,12 @@
1
+ import { e as RedwebClient } from './client-Dq8oKJwh.cjs';
2
+
3
+ /** One browser document's Live HTML transport and delegated event ownership. */
4
+ interface LivePageConnection {
5
+ readonly client: RedwebClient;
6
+ readonly disposed: boolean;
7
+ dispose(): void;
8
+ }
9
+ /** Mount server-provided page configuration once, or remount after disposal. */
10
+ declare function mountLivePage(): LivePageConnection;
11
+
12
+ export { type LivePageConnection, RedwebClient, mountLivePage };
@@ -0,0 +1,12 @@
1
+ import { e as RedwebClient } from './client-Dq8oKJwh.js';
2
+
3
+ /** One browser document's Live HTML transport and delegated event ownership. */
4
+ interface LivePageConnection {
5
+ readonly client: RedwebClient;
6
+ readonly disposed: boolean;
7
+ dispose(): void;
8
+ }
9
+ /** Mount server-provided page configuration once, or remount after disposal. */
10
+ declare function mountLivePage(): LivePageConnection;
11
+
12
+ export { type LivePageConnection, RedwebClient, mountLivePage };