Retsam
Retsam
This adds types for representing immutable versions of observables, observable arrays, and computeds. The changes in this PR match changes that were introduced into the public typings in DefinitelyTyped/DefinitelyTyped#30499. Although...
From the section on constants: > With the above two constants the following expression will always return true. > > `john.age + five === ({name: 'John', age: 30}).age + (5)`...
Both the client-side and server-side pagination examples seem to have issues with them: The client-side pagination shows `.slice(startIndex, endIndex)` when the correct version seems to be `.slice(startIndex, endIndex + 1)`....
Allow the preview to be suppressed by escaping the url in `` - this can be useful if you've already sent the code (or most of it) in a previous...
By default TS will pull in any global modifying types that it finds - by specifying a types field it'll only pull in specific ones - which is usually a...
A bit of a tangent on the discussion of #89 and #90: I'm not sure how useful `AnyFunc` is as a whole, nowadays. I'm skimming through our codebase, and all...
### Version 1.57.0-alpha-2025-11-10 ### Steps to reproduce 1. Clone my repo at [https://github.com/Retsam/playwright-dialog-bug-repro](https://github.com/Retsam/playwright-dialog-bug-repro) 2. npm install 3. npm run test Contains this test: ```ts test("should click into shadow root with...