UNPKG
get-proto
Version:
latest (1.0.1)
1.0.1
1.0.0
Robustly get the [[Prototype]] of an object
github.com/ljharb/get-proto
ljharb/get-proto
get-proto
/
index.d.ts
6 lines
(3 loc)
•
126 B
TypeScript
View Raw
1
2
3
4
5
6
declare
function
getProto<O
extends
object
>(
object
: O):
object
|
null
;
declare
const
x
:
typeof
getProto |
null
;
export
= x;