TypeStat
TypeStat copied to clipboard
Handle uninitialized variables as part of strictNullChecking
let results: string[];
immediately(() => {
results = ["foo"];
});
results.length;
This should change to let results!: string[]; if strictNullChecking is enabled.