```ts class Point { z: string; constructor() { } } ``` We should provide a quick fix here to provide a definite assignment assertion on `z` under `--strictPropertyInitialization`. Bonus points if we only provide the quick fix when the property has *actually* been written to!