UNPKG

ts-std-lib

Version:
8 lines (7 loc) 200 B
import { Primitive } from './Primitive'; /** * An object that represents a value and that value can be obtained */ export interface IValue<T extends Primitive | object> { valueOf(): T; }