Mighty Ali
Mighty Ali
Suggestion: TailwindCss plugin for web app theme?
Any news?
> This is a good suggestion to specify multiple conditions that all need to be true. How would you suggest that people can specify that one of several conditions should...
I've just known about `waitUltil()`, I think if I knew it earlier I wouldn't open this issue, but after I see your examples I think we can let `wait()` for...
I like it, it is readable and easy to use, With alias will it be like this? ``` const textOrPhotoMessage = await conversation.any([ conversation.waitFor(':text'), conversation.waitFor(':photo'), ]) ``` ``` const text...
It would be cool if we can use forms also I don't know if it's possible but maybe something like this: ``` const text = await conversation.all([ conversation.form.text(), conversation.waitFrom(ctx.from?.id), ])...
I tried this piece of code ``` const text = await Promise.all([ conversation.waitFor(':text'), conversation.waitFrom(ctx.from?.id), ]) ``` And it doesn't work It behaves like we haven't added Promise.add at all it...
I compared my idea with yours, and still see your way is great and easy to read. I like `conversation.any([])` & `conversation.all([])`