UNPKG
nctx
Version:
latest (2.3.1)
2.3.1
2.2.0
2.1.1
2.1.0
2.0.1
2.0.0
1.7.1
1.7.0
1.6.2
1.6.1
1.6.0
1.5.0
1.4.1
1.4.0
1.3.0
1.2.0
1.1.0
1.0.1
1.0.0
NodeJS Contextual Dependency Injection using native async_hooks - IoC
codeberg.org/devthefuture/nctx
nctx
/
types
/
proxy-handlers.d.ts
10 lines
(8 loc)
•
270 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
export
declare
const
handler
: {
get
(
obj
:
any
,
key
:
string
|
symbol
):
any
;
has
(
obj
:
any
,
key
:
string
|
symbol
):
boolean
;
set
(
obj
:
any
,
key
:
string
|
symbol
,
value
:
any
):
any
; };
export
declare
const
requireHandler
: {
get
(
obj
:
any
,
key
:
string
|
symbol
):
any
; };