UNPKG

stem-core

Version:

Frontend and core-library framework

12 lines (10 loc) 240 B
// THIS FILE IS WORK IN PROGRESS import {UI} from "./UIBase"; import {Dispatchable} from "../base/Dispatcher"; export class Passthrough extends Dispatchable { toUI() { return this.options.children; } redraw() { } }