UNPKG
ts-std-lib
Version:
latest (1.2.2)
1.2.2
1.2.1
1.2.0
1.1.1
1.1.0
1.0.1
1.0.0
A standard library for typescript
github.com/SeanSobey/ts-std-lib
SeanSobey/ts-std-lib
ts-std-lib
/
dist
/
IValue.d.ts
8 lines
(7 loc)
•
200 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
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; }