Skip to content

Instantly share code, notes, and snippets.

@ducksoupdev
Created February 16, 2017 12:49
Show Gist options
  • Select an option

  • Save ducksoupdev/fe897add7a89692971b5a5c97ee18cea to your computer and use it in GitHub Desktop.

Select an option

Save ducksoupdev/fe897add7a89692971b5a5c97ee18cea to your computer and use it in GitHub Desktop.
abstract class Foo {
protected abstract doSomething(): string;
}
class Bar extends Foo {
protected doSomething() {
return 'foo';
}
}
let b = new Bar();
b.doSomething()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment