Helios
Helios
@AlexGibson12 this library doesn't handle tokenization, it's just rendering what you give it. To support Unicode characters in words, I use `/[\p{L}']+/gu` in my word splitting code.
> This so weird as it looks to happens only with a single section in the MJML 🤔 Can you confirm ? Do you mean that if I add a...
@ricardograca Well pretty much what is in the title: I have a `belongsToMany(Something).through(Other)` relation and I'm calling `.detach()` (without arguments) on it which should delete all records from pivot table...
Aliases are not supported right now, because I couldn't think of a nice syntax that would allow describing aliases in TS, while also preserving auto-completion support :) Suggestions are welcome
@zhigang1992 I tried something similar in the past but was not able to make it work for union/interface types and didn't have the time to work on it since. I...
can you provide the full error with stack trace? also, what is your Node version and what's in your `tsconfig.json`?
@Pajn I can maybe see how mapped types can be used to pick the first level properties based on the query, but I can't see a solution on how to...
Okay, looked at conditional types. This shows more promise
@mikecann this is what I have so far. Appears to be working recursively. ```ts interface User { id: string name: string email: string | null posts: Post[] } interface Post...
> Here this solves it recursively, it makes your brain bleed a little trying to work it out tho.. do you think your solution can fit the `__scalar` logic and...