@evjs/manifest 0.0.12 → 0.0.14
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.
- package/esm/index.d.ts +2 -2
- package/package.json +1 -1
package/esm/index.d.ts
CHANGED
|
@@ -27,8 +27,8 @@ export interface RscEntry {
|
|
|
27
27
|
}
|
|
28
28
|
/** Server section of the manifest. */
|
|
29
29
|
export interface ServerManifestSection {
|
|
30
|
-
/** Server bundle entry filename (e.g. "main.js" or "main.a1b2c3d4.js"). */
|
|
31
|
-
entry
|
|
30
|
+
/** Server bundle entry filename (e.g. "main.js" or "main.a1b2c3d4.js"). Omitted when no server bundle exists. */
|
|
31
|
+
entry?: string;
|
|
32
32
|
/** Registered server functions (fnId → module + export). */
|
|
33
33
|
fns: Record<string, ServerFnEntry>;
|
|
34
34
|
/** React Server Components (future — reserved). */
|