EdJoPaTo
EdJoPaTo
see #61
I think that is the current situation there sadly… I would like TypeScript types a lot but personally I don't have the time for doing a fork or something like...
Check out #61 tldr: v6 had them, v7 changed things and as @maxlath isn't using TypeScript he doesnt want to maintain them besides the code (which is totally understandable). The...
The common reason why imports failed for me seem to be the required fully specified path in the `main`/`types` package.json key of the package to be imported: ```diff -"main": "dist",...
Taking a look on the [tsconfig recommended bases](https://www.typescriptlang.org/docs/handbook/tsconfig-json.html#tsconfig-bases) is interesting here. The [baseline](https://www.npmjs.com/package/@tsconfig/recommended) and [NodeJS 12 version](https://www.npmjs.com/package/@tsconfig/node12) both include `esModuleInterop`. (Interestingly the NodeJS 12 version has some libs included which...
Thats where the link on the main page ends up. ```html gitly.org/vlang/v ``` Copying the text of the link (https://gitly.org/vlang/v) directly ends up at 404 too so its not correct...
Can the soft wrap temporarily disabled only for the diff window (instead of the hole editor)? Also a config option to automatically turn of the softwrap (with the warning) would...
Putting n buttons into m columns is something helpful that should be part of the main library in my opinion. See [grammy-inline-menu align.ts](https://github.com/EdJoPaTo/grammy-inline-menu/blob/main/source/buttons/align.ts) and its [test](https://github.com/EdJoPaTo/grammy-inline-menu/blob/main/source/buttons/align.test.ts) for inspiration. Creating buttons...
I don't see the need in functional patterns which I use all the time. I also don't see the argument of writing callback_data which is auto suggested and auto completed...
It might be interesting to export the commands to [setMyCommands](https://core.telegram.org/bots/api#setmycommands). Not sure if that's easily possible as they also require a description. Some kind of check would be great to...