UNPKG

vasille

Version:

The same framework which is designed to build bulletproof frontends (core library).

13 lines (12 loc) 206 B
/** * Interface which describes a value * @class IValue */ export class IValue { toJSON() { return this.V; } toString() { return this.V?.toString() ?? "iValue<void>"; } }