UNPKG

@benev/slate

Version:
16 lines 380 B
export class Shell { #context; constructor(context) { this.#context = context; } get context() { if (this.#context) return this.#context; else throw new Error("nexus.context was not set, but it's necessary"); } set context(context) { this.#context = context; } } //# sourceMappingURL=shell.js.map