Skip to content

Instantly share code, notes, and snippets.

@alex-popov-tech
Created October 1, 2018 21:03
Show Gist options
  • Save alex-popov-tech/aa3055ade77ed987b3e1708f7d4c53c4 to your computer and use it in GitHub Desktop.
Save alex-popov-tech/aa3055ade77ed987b3e1708f7d4c53c4 to your computer and use it in GitHub Desktop.
// first.ts
import { second } from './second';
export function first() {
console.log('first')
second()
}
first()
//second.ts
import { third } from './third';
export function second() {
console.log('second')
third()
}
second()
//third.ts
import { third } from './third';
export function second() {
console.log('second')
third()
}
second()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment