UNPKG

@appshuttle.io/turing

Version:
18 lines (13 loc) 249 B
class Subview { constructor(parameters) { this.type = parameters.type this.id = parameters.id } getType() { return this.type } getId() { return this.id } } module.exports = Subview