Dmitry Semigradsky

Results 119 comments of Dmitry Semigradsky

Звучит многообещающе) Но хотелось бы в v6.x иметь исправленное, кажется не так просто будет на v7 перейти

Still can't build on Oasis. But I don't know what version of RekMOD I have. ![Screenshot_2024-05-03-22-20-40-582_com unciv app](https://github.com/ravignir/RekMOD/assets/1198848/6ce165f0-c7f8-47b9-8e05-98e8b8bc9201) ![Screenshot_2024-05-03-22-21-10-847_com unciv app](https://github.com/ravignir/RekMOD/assets/1198848/37fae256-2a92-4d39-8dce-812df583a751)

In tests there is type assertion here: https://github.com/DefinitelyTyped/DefinitelyTyped/blob/e29db077fbfd08177829fc4cca6750c75999d8f6/types/web-bluetooth/web-bluetooth-tests.ts#L99

@benediktms What is the issue?

@alex-sherwin it is strange, I see the error: ![image](https://user-images.githubusercontent.com/1198848/199103615-11681b12-3197-4eed-856c-5ebb524213c1.png) > Module 'XXX' has no default export.

As I see, `upcastAlso` is marked as optional https://github.com/ckeditor/ckeditor5/blob/656057f3b1e810eb088d1752952dbd99815f8ac0/packages/ckeditor5-font/src/fontsize.js#L61 But it doesn't look as optional in docs: ![image](https://user-images.githubusercontent.com/1198848/200830406-490021a2-f7a7-4cbf-ad6b-5901eb6b8c92.png) Smth wrong with the documentation generator?

It works beautiful: ```ts function createEnumChecker(enumVariable: { [key in T]: TEnumValue }) { const enumValues = Object.values(enumVariable) return (value: string): value is TEnumValue => enumValues.includes(value) } enum RangeMode { PERIOD...