Skip to content

Instantly share code, notes, and snippets.

@fitzmode
Created April 22, 2018 06:26
Show Gist options
  • Save fitzmode/fbc1c757fd073c85b4f645775c1a72e1 to your computer and use it in GitHub Desktop.
Save fitzmode/fbc1c757fd073c85b4f645775c1a72e1 to your computer and use it in GitHub Desktop.
Typescript type de-assertion
@ViewChild(AgmMap) myMap: AgmMap;
......
// Specific type 'de-assertion' for only this call:
.then(() => (this.myMap as any)._mapsWrapper.setCenter({lat: this.lat, lng: this.lng}));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment