class-functions.js 110 Bytes
Newer Older
lxyang committed
1 2 3 4 5 6 7 8 9 10 11
class Foo1 {
  bar() {}
  barz() {}
}

class Foo2 {
  bar() {}
  barz() {}
}

module.exports = { Foo1, Foo2 }