Flavien Volken
Flavien Volken
Hi, I'm wondering why the "three-types" completion is not working: For instance, when I start typing mesh, the typed defined in: `node_modules/@react-three/fiber/dist/declarations/src/three-types.d.ts`` is not taken into consideration, while other functions...
Hi, I just wanted to share that your app works quite well with this [matter](https://github.com/project-chip/matter.js) npm package. In short, you can turn your leds in a matter controllable (Apple Homekit,...
Hello, while using the following code: ```typescript export const pageParams = route(':id&:date', {id: stringParser, date: dateParser}, {}); ``` I realize that parsing the route `pageParams.parseParams({id:"", date:"2001-01-01"})` the route will merge...
TS4.1
Hi, with typescript 4.1 we can now type path from objects. i.e. generate a string union of path from an object structure. This would be really helpful to type the...
The idea would be as follow GraphQL Schema to CarminteJS Shema (GraphQL -> [AST](https://www.contentful.com/blog/2018/07/04/graphql-abstract-syntax-tree-new-schema/) -> Carminte) Then support [OpenCRUD](https://www.opencrud.org/) for the queries. This is what [prisma](https://www.prisma.io/) is doing right now...
Hi, what is the midi specification coverage of this parser ?
I am not sure typescript do now exports the interfaces, but imagine the following: ```ts @DynamicCast({class: AnInterface}) json : AnInterface; ``` It would throw an exception if the casting failed,...
### Which @ngneat/query-* package(s) are relevant/releated to the feature request? query ### Description I'm having this abstract method: ```typescript abstract getStuff$( ): ObservableQueryResult; ``` ```typescript abstract getStuff$( ): ObservableQueryResult; ```...
Hi, really cool project! I am wondering about the project's status, could we use this in production?
Hello, let's consider the following code: ```typescript public aController : FormControl = new FormControl(null); public onSetPristine(){ this.aController.markAsPristine();} ``` then within the html ```html Set pristine {{aController.pristine$|async}} ``` Initially, `aController.pristine$` is...