Federico Sordillo

Results 7 comments of Federico Sordillo

Hi @cettoana, I wrote the typings in DefinetelyTyped repository if you want to review https://github.com/DefinitelyTyped/DefinitelyTyped/pull/50513/files

Hi everybody, I'll write here what I (wrongly) wrote in a separate issue I borrow from both positions as I can see potential use cases of `RemoteInitial` but I also...

this is still broken for me with `"vite": "^4.0.4"` and `"vite-plugin-checker": "^0.5.5"`

instances for `Alternatives` could also be used to simulate a local state. If a locally updated value is present it is used, else the remotely fetched one is returned. This...

> voidcmd2(undefined, { a: 'foo' }) seeing this example I wonder if it would be better to have something like ```ts voidcmd2({ params: "param", invalidates: { a: "foo" } })...

or maybe a curried version: ```ts voidcmd2("param")({ a: "foo" }) // when the query has params voidcmd2()({ a: "foo" }) // when the query does not have params ```