Commit 19b150fc authored by wildfirecode's avatar wildfirecode

m

parent 1e6756c4
import Foo from "./Foo";
export default class Bar { export default class Bar {
constructor () { createFoo():Foo {
console.log('im bar') return new Foo()
} }
} }
\ No newline at end of file
export default class Foo { export default class Foo {
constructor () { log() {
console.log('im foo') console.log('im foo')
} }
} }
\ No newline at end of file
// export default function (num:number) {
// return Math.round(num)
// }
import Foo from "./Foo";
import Bar from "./Bar"; import Bar from "./Bar";
export { export {
Foo,Bar Bar
} }
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment