Dmitry Semigradsky
Dmitry Semigradsky
Звучит многообещающе) Но хотелось бы в v6.x иметь исправленное, кажется не так просто будет на v7 перейти
Still can't build on Oasis. But I don't know what version of RekMOD I have.  
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:  > 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:  Smth wrong with the documentation generator?
Still valid
Still valid
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...