Romain Marcadier
Romain Marcadier
Yeah we need to *not* erase `@internal` from the `.d.ts` files (this is achieved by changing a typescript compiler option). > @rix0rrr: If we're going to that I'd like to...
@opensource-inemar-net this is definitely a challenge for supporting Rust. There are similar problems with Golang. We are looking into options at this point and haven't quite homed in on any...
> inheritance is not really needed I mean. If you look at CDK users, extending `Construct` or `Stack` is an _extremely_ common thing to do...
> This will cause problems with Rosetta automatic example creation. But I don't know how good this works in reality. I mean, it works as good as we make it......
Instead of ```ts export * from './EKS'; ``` Have you tried ```ts export * as EKS from './EKS'; ``` --- I think what you're trying to do is reasonable and...
Would you be able to make a small repro repository for me to use? That'd help me get to this faster...
One tidbit here is that C# does **not** allow re-declaring a member on a child interface, only to *hide* it. This means from a C# developer's perspective this results in...
@RichiCoder1 you're correct, this is the current plan. I've investigated doing a "bring your own typescript" with adapters but it turns out to be nearly impossible to do without creating...
> I'm missing some concrete examples here. Are you proposing to replace: > > ``` > @jsii.implements(cdk.ISomething) > class Boo: > ... > > # with > class Boo(cdk.ISomething): >...
> Did you recently change the method signatures to include line-breaks? That was my biggest pet peeve but it seems to be fixed now. We used to run generated Python...