Gregor Woiwode

Results 29 comments of Gregor Woiwode

Cool, we can also provide schematics to create rules like components and link them to the correct module.

In this case it would be the prefix `entity`. It clearly expresses that the methods come from the interface. Another example would be Angular itself: `ngOnInit`, `ngOnDestroy`,... I think the...

A possible way without breaking anyone would be introducing an interface in parallel. ```ts interface MetaEntity { metaIdentifier(): string; // before: identity metaName(): string; // before: className metaTypes(): any; //...

Hi, ist fundamentals a library?

https://github.com/gvergnaud/ts-pattern might provide an API that could be adopted for typescript-functional-extensions. 🤔 I think, what I am looking for is: [Pattern Matching](https://en.wikipedia.org/wiki/Pattern_matching).

Hi, no worries. I am happy to read your feedback.

Hey, we discussed this notation while creating the Modal component. Back that time TreeShaking was the main reason why we switched from Dot-notation to the current version. Another argument was...

Hi, I also have the use case automating the Login using 2-FA. I am stuck finding a documentation how the OTP is passed. If I would have a good source,...