UNPKG

@glandjs/common

Version:

Glands is a web framework for Node.js (@common)

5 lines (4 loc) 275 B
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;