Created
December 18, 2018 16:41
-
-
Save jrgleason/2f882b650d6dc83816cbaebf7c85026f to your computer and use it in GitHub Desktop.
Ref error on external
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import {Other} from "./Other" | |
export class BasePage{ | |
constructor(){ | |
} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import {BasePage} from "./BasePage" | |
console.log("Running"); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import {Section} from "./Section" | |
export class Other extends Section{ | |
constructor(){super()}; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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