augmenttoolkit / node_modules /@nestjs /common /interfaces /modules /injection-token.interface.d.ts
Leon4gr45's picture
Include updated package-lock.json (part 9)
cd6720a verified
Raw
History Blame Contribute Delete
204 Bytes
import { Abstract } from '../abstract.interface';
import { Type } from '../type.interface';
/**
* @publicApi
*/
export type InjectionToken<T = any> = string | symbol | Type<T> | Abstract<T> | Function;