Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save ailabs-software/5bd04b0a25565351221dd98a2c7d568b to your computer and use it in GitHub Desktop.
Save ailabs-software/5bd04b0a25565351221dd98a2c7d568b to your computer and use it in GitHub Desktop.
TypeScript changing of type by localscope
var obj: Object = new Object();
class Puppet
{
public doTheatricalPuppet(): void
{
}
}
function test()
{
if (obj instanceof Puppet) {
obj.doTheatricalPuppet();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment