Alexey Petrochenkov
Alexey Petrochenkov
Thanks for quick answer. The problem is deeper ) I use bootstrap (as an example) so I don't have ability to paste `:root` where I want
>P.S. All in all I believe that html tag shouldn't be namespaced at all. Or better replace `html` with `html${computedNamespace}`
Here is pull: https://github.com/topaxi/postcss-selector-namespace/pull/7
Looking forward for this feature as well.
@jonas any updates?
Probably moving setTimeout/setInterval as it is in https://github.com/turuslan/HackTimer will help
I'm afraid it's not that simple, consider nested oneof... ```proto syntax = "proto3"; message OuterMessage { oneof outer_field { InnerMessage inner_message = 1; } } message InnerMessage { oneof inner_field...
I think somehow like below: ```ts type OuterMessage = {} | {inner_message : {string_value: string}} | {inner_message : {int_value : number}} ```
Yes, there's also possibility to put shared props into its own common interface, but that might affect performance, so duplicating is probably ok