UNPKG

vasille

Version:

The first Developer eXperience Orientated front-end framework (core library).

15 lines (14 loc) 298 B
import { Destroyable } from "./destroyable.js"; /** * Interface which describes a value * @class IValue * @extends Destroyable */ export class IValue extends Destroyable { toJSON() { return this.$; } toString() { return this.$?.toString() ?? "iValue<void>"; } }