UNPKG
@glandjs/common
Version:
alpha (1.0.0-alpha.1)
beta (1.0.0-beta)
latest (1.0.3-beta)
1.0.3-beta
1.0.2-beta
1.0.1-beta
1.0.1-alpha
1.0.0-beta
1.0.0-alpha.1
1.0.0-alpha.0
1.0.0-alpha
Glands is a web framework for Node.js (@common)
github.com/glandjs/gland
glandjs/gland
@glandjs/common
/
types
/
modules.type.d.ts
5 lines
(4 loc)
•
275 B
TypeScript
View Raw
1
2
3
4
5
import
{
DynamicModule
}
from
'../interfaces'
;
import
{
Constructor
}
from
'@medishn/toolkit'
;
export
type
ImportableModule
<T =
any
> =
Constructor
<T> |
DynamicModule
|
Promise
<
DynamicModule
>;
export
type
InjectionToken
<T =
any
> =
string
|
symbol
|
Constructor
<T> |
Function
;