UNPKG

ts-std-lib

Version:
9 lines (7 loc) 199 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; }