Que3216
Que3216
## What happened? ```yml InvalidTimeIntervals: namespace: MyService code: INVALID_ARGUMENT safe-args: invalidTimeIntervals: set ``` Generates the typings: ```ts import { ITimeInterval } from "./timeInterval"; export interface IInvalidTimeIntervals { 'errorCode': "INVALID_ARGUMENT"; 'errorInstanceId':...
The typescript coding guidelines state: ```Use undefined. Do not use null.``` https://github.com/Microsoft/TypeScript/wiki/Coding-guidelines#null-and-undefined Standardizing on one helps prevent bugs (due to comparisons between the two; or due to === undefined checks,...