eclipse / n4js

Eclipse Public License 1.0
30 stars 27 forks source link

Optionality on fields in object literals gets lost in d.ts output #2575

Closed mmews-n4 closed 9 months ago

mmews-n4 commented 9 months ago

Example.n4js

const c: ~Object with {
    optional_gets_lost_here?: string[];
} = null;