reqct-gamehub-module 0.1.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,17 @@
1
+ import React from 'react';
2
+
3
+ /**
4
+ * GameHubNode for React Flow.
5
+ *
6
+ * Props come from React Flow Node renderer:
7
+ * - id: node id
8
+ * - data: node data (data.label used as title)
9
+ * - selected: boolean
10
+ *
11
+ * Extra props:
12
+ * - overlayMode: if true, renders only the game content (no handles / header)
13
+ * - overlayGameId: which game to show in overlay mode
14
+ */
15
+ declare const GameHubNode: React.NamedExoticComponent<object>;
16
+
17
+ export { GameHubNode };
@@ -0,0 +1,17 @@
1
+ import React from 'react';
2
+
3
+ /**
4
+ * GameHubNode for React Flow.
5
+ *
6
+ * Props come from React Flow Node renderer:
7
+ * - id: node id
8
+ * - data: node data (data.label used as title)
9
+ * - selected: boolean
10
+ *
11
+ * Extra props:
12
+ * - overlayMode: if true, renders only the game content (no handles / header)
13
+ * - overlayGameId: which game to show in overlay mode
14
+ */
15
+ declare const GameHubNode: React.NamedExoticComponent<object>;
16
+
17
+ export { GameHubNode };