/
githubmirror
/
nest
Обзор
Документация
Войти
/
githubmirror
/
nest
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
packages/common/interfaces/modules/injection-token.interface.ts
12 строк
217 B
krisztian.maurer
refactor(common): Add generic to InjectionToken type
24 апр 2023, 14:49
24 апр 2023, 14:49
3bf74d8
Код
Авторство
О чём код?
import { Abstract } from '../abstract.interface'; import { Type } from '../type.interface'; /** * @publicApi */ export type InjectionToken<T = any> = | string | symbol | Type<T> | Abstract<T> | Function;