UNPKG
@tdi2/di-core
Version:
latest (3.3.0)
3.3.0
3.2.0
3.1.2
3.1.1
3.1.0
3.0.0
2.2.0
2.1.0
2.0.0
0.1.1
0.1.0
TypeScript Dependency Injection 2 - Core DI framework
@tdi2/di-core
/
dist
/
examples
/
nested-arrow-functions.basic.input.d.ts
8 lines
(7 loc)
•
258 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
import
type
{
Inject
}
from
"@tdi2/di-core/markers"
;
import
{
ApiInterface
}
from
'./shared-types'
;
export
declare
const
NestedArrowFunctions
:
(
props
: { services: { api: Inject<ApiInterface>; }; }
) =>
import
(
"react/jsx-runtime"
).
JSX
.
Element
;