UNPKG

204 BTypeScriptView Raw
1import { Abstract } from '../abstract.interface';
2import { Type } from '../type.interface';
3/**
4 * @publicApi
5 */
6export type InjectionToken<T = any> = string | symbol | Type<T> | Abstract<T> | Function;