import { Primitive } from './Primitive'; /** * An object that represents a value and that value can be obtained */ export interface IValue { valueOf(): T; }