Skip to content

Instantly share code, notes, and snippets.

@eamonnboyle
Created August 27, 2021 10:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save eamonnboyle/6000d0398e6a9561312149353e6e7e8f to your computer and use it in GitHub Desktop.
Save eamonnboyle/6000d0398e6a9561312149353e6e7e8f to your computer and use it in GitHub Desktop.
Nested Property Aliased Condition Fail
function setupComponent(component: Component) {
let isUsingTextArea = 'rows' in component.inputArea.control;
if (isUsingTextArea) { // Narrowing does not occur
component.inputArea.control.rows = 25; // Compiler error
// ...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment