UNPKG
vue-di-container
Version:
latest (0.1.0)
0.1.0
Dependency injection container for Vue
github.com/tsufeki/vue-di-container
tsufeki/vue-di-container
vue-di-container
/
dist
/
reflection.d.ts
7 lines
(6 loc)
•
269 B
TypeScript
View Raw
1
2
3
4
5
6
7
import
'reflect-metadata'
;
import
{
Ctor
,
Func
}
from
'./util'
;
export
declare
class
Reflection
{
getParameterTypes
(
fun
:
Ctor
<
any
> |
Func
<
any
>): (
Ctor
<
any
> |
undefined
)[];
getPropertyType
(
cls
:
Ctor
<
any
>,
propertyName
:
string
|
symbol
):
Ctor
<
any
> |
undefined
; }