UNPKG

@deployport/specular-runtime

Version:

Runtime for Specular API clients with support for Node.js and Browser

12 lines (11 loc) 224 B
export default class Property { name; struct; type; constructor(st, name, type) { this.struct = st; this.name = name; this.type = type; this.struct._addProperty(this); } }