File size: 179 Bytes
cfbbc1a
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
import { InjectionToken } from './injection-token.interface';
/**
 * @publicApi
 */
export type OptionalFactoryDependency = {
    token: InjectionToken;
    optional: boolean;
};