Skip to content

Instantly share code, notes, and snippets.

@jrgleason
Created December 18, 2018 16:41
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 jrgleason/2f882b650d6dc83816cbaebf7c85026f to your computer and use it in GitHub Desktop.
Save jrgleason/2f882b650d6dc83816cbaebf7c85026f to your computer and use it in GitHub Desktop.
Ref error on external
import {Other} from "./Other"
export class BasePage{
constructor(){
}
}
import {BasePage} from "./BasePage"
console.log("Running");
import {Section} from "./Section"
export class Other extends Section{
constructor(){super()};
}
import {BasePage} from "./BasePage"
export class Section extends BasePage{
constructor(){super();}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment