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