Changes : 0.2.77

This commit is contained in:
2026-07-22 01:56:18 +05:30
parent 377a4e34bd
commit 1c033fcba0
979 changed files with 4451 additions and 4243 deletions
+9 -2
View File
@@ -1,4 +1,4 @@
# WRNexusJS documentation 0.2.76
# WRNexusJS documentation 0.2.77
Status: Private Developer Preview. This site documents 27 release-aligned packages.
@@ -12903,7 +12903,7 @@ Events: none
# Installed package documentation
The following README files and declarations come from the installed private 0.2.76 release.
The following README files and declarations come from the installed private 0.2.77 release.
## @wrnexus/ai
@@ -14038,6 +14038,13 @@ declare class Lexer {
private readString;
/** Read a route path like `/users/[id]` up to whitespace or `{`. */
readPath(): string;
/**
* Read a prop default initializer. The initializer may contain nested arrays,
* objects, calls, strings, or template literals. At top level it ends at a
* newline, the closing brace of the props block, or the next inline prop
* declaration (`name = ...` / `name: Type = ...`).
*/
readPropInitializer(): string;
/** Read the rest of the current line (used for `state x = <expr>`). */
readToLineEnd(): string;
/**