UNPKG

beyond

Version:

The Full Stack Universal Typescript Framework

29 lines (22 loc) 463 B
module.exports = class { #path; get path() { return this.#path; } #config; get config() { return this.#config; } #error; get error() { return this.#error; } constructor(path, {config, error}) { this.#path = path; this.#config = config; this.#error = error; console.log('creating bee...', path, config); } destroy() { } }