Aleksey Levenstein

Results 20 comments of Aleksey Levenstein

It is possible to [install](https://docs.npmjs.com/cli/v7/commands/npm-install) package under a custom alias: ``` npm install @npm: ``` So you could do something like: ``` npm install hubot-mycompany@npm:@mycompany/adapter bin/hubot --adapter mycompany ```

As a workaround, you can bind `is-open` to property with getter and setter and perform required action in setter instead of `on-toggle`

Examples on https://www.downshift-js.com/use-combobox use `selectItem(null)` to clear selection, but typings do not allow this

Change in typescript typings is not breaking (function will just allow wider input) Change in flow typings `selectedItem: Item | null;` in `DownshiftState` is kinda breaking, but I think still...

@karlkfi Thanks for looking into this! > That said, what is the behavior you're looking for? Won't it still be status unknown if the context is cancelled? No, the poller...

Thanks @chisui and @mrkev. I'm aware about the union workaround, but it won't work if fields have different value types. I'm not trying to define indexer/multiple indexers, but define fields...

Again people, no one tried to define multiple indexer types, but "computed properties" if you wish. In this scenario I'd like flow to treat const value as a key (not...

@spedy the issue is about using constant in **type** definition

> both modifying inspect That works, but I'd rather .dup and redact the header before storing response in the error as we still keep it accessible from the error instance....

@yannh thanks for looking into this. I've added a usage example.