@flexireact/core 4.0.0 → 4.1.1

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,16 @@
1
+ /**
2
+ * FlexiReact Server v4.1.0
3
+ * Production-ready server with SSR, RSC, Islands, and more
4
+ */
5
+ /**
6
+ * Creates the FlexiReact server
7
+ */
8
+ interface CreateServerOptions {
9
+ projectRoot?: string;
10
+ mode?: 'development' | 'production';
11
+ port?: number;
12
+ host?: string;
13
+ }
14
+ declare function createServer(options?: CreateServerOptions): Promise<unknown>;
15
+
16
+ export { createServer, createServer as default };