UNPKG
is-type-of
Version:
latest (2.2.0)
release-1.x (1.4.0)
2.2.0
2.1.0
2.0.1
2.0.0
1.4.0
1.3.0
1.2.1
1.2.0
1.1.0
1.0.0
0.3.1
0.3.0
0.2.1
0.2.0
0.1.0
0.0.2
0.0.1
0.0.0
complete type checking for node
github.com/node-modules/is-type-of
node-modules/is-type-of
is-type-of
/
dist
/
commonjs
/
types
/
external.d.ts
12 lines
(11 loc)
•
232 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
interface
LongObject
{
high
:
number
;
low
:
number
; }
/** * returns true if val is LongObject * * LongObject is from npm package `long` */
export
declare
function
isLongObject
(
obj
?:
unknown
): obj is
LongObject
;
export
{};