Skip to content

Instantly share code, notes, and snippets.

@Ginden
Created August 6, 2019 15:55
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 Ginden/23f724d6b37d434fe9a5cf02a53e19eb to your computer and use it in GitHub Desktop.
Save Ginden/23f724d6b37d434fe9a5cf02a53e19eb to your computer and use it in GitHub Desktop.
import {Foo} from './foo.ts';
export class Bar extends Foo {}
import {Bar} from './bar.ts';
export class Foo {
baz(): Bar {
return new Bar();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment