Toliak
Toliak
I have the same issue OS: ``` Linux manjaro 5.4.131-1-MANJARO #1 SMP PREEMPT Sun Jul 11 12:35:36 UTC 2021 x86_64 GNU/Linux ``` FFTW Version: ``` Packages (1) fftw-3.3.9-1 ``` PIP...
Hello Have you tried to change docker-forwarded port? Line `-p 1194:1194/udp` to, for example, `-p 9999:1194/udp`. So, the full start script will be: ``` docker run -it --rm --cap-add=NET_ADMIN \...
+1. I have the same issue In my case I would like to extend `Choice` interface (due to #370) and I have to use ```ts type EnquirerChoice = Exclude[0]; //...
Moreover, for `type: 'multiselect'` -- `initial` property is an array of numbers. However, I have to write something like `initial: [2,3] as unknown as number` to pass the compilation. The...
That's not the boilerplate error :) Seems you have wrong working directory set. Luckly, I had the same error with VSCode and PowerShell. If you have the same case, thy...
Hmmm.. error about this looks expected How would you resolve `this.method`, if you wrote code on pure Lua? 🤔 UPD: have you tried ```ts const self = this; addEventHandler('smth', root,...
You can import: - your own exported declarations - types from `mtasa-lua-types` module In my plans: to make a live-coding video where I will write a two resources with simple...
Basic understanding can be received from MTASA wiki and Lua coding. In general, when we are talking about typescript, I expect that you familiar with Lua
Dependencies are broken, I guess Workaround: to install the specified version of the `lua-types` lib: ``` npm install -D [email protected] ```
`@beta` is used for specifying the version. If not specified, Latest version will be used. Both commands are correct. But I would recommend to use latest version instead of beta....