/
githubmirror
/
nest
Обзор
Документация
Войти
/
githubmirror
/
nest
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
packages/common/interfaces/hooks/on-init.interface.ts
10 строк
246 B
Kamil Myśliwiec
refactor(): minor style improvements
03 мар 2020, 11:13
Не верифицирован
03 мар 2020, 11:13
e8da23c
Код
Авторство
О чём код?
/** * Interface defining method called once the host module has been initialized. * * @see [Lifecycle Events](https://docs.nestjs.com/fundamentals/lifecycle-events) * * @publicApi */ export interface OnModuleInit { onModuleInit(): any; }