Alexander Gluschenko

Results 1 issues of Alexander Gluschenko

Description: Currently Tapper transpiles Nullable from C# to TypeScript as (T | undefined), for example: ```typescript number | undefined ``` I want it to use null instead of undefined: ```typescript...