tjs-lang 0.5.2 → 0.5.4

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/CLAUDE.md CHANGED
@@ -306,7 +306,7 @@ function greet(name = 'Alice') { } // name is optional, defaults to 'Alice
306
306
  function createUser(user: { name: '', age: 0 }) { }
307
307
 
308
308
  // Nullable type
309
- function find(id: 0 || null) { } // integer or null
309
+ function find(id: 0 | null) { } // integer or null
310
310
 
311
311
  // Optional TS-style
312
312
  function greet(name?: '') { } // same as name = ''