UNPKG
@addapptables/microservice
Version:
latest (2.0.1)
2.0.1
2.0.0
1.1.0
1.0.0
1.0.0-0
0.0.3-0
0.0.2-0
0.0.1
0.0.1-0
addapptables microservice
github.com/addapptables/miscellaneous
addapptables/miscellaneous
@addapptables/microservice
/
src
/
interfaces
/
lifecycles
/
on-init.interface.ts
7 lines
(4 loc)
•
114 B
text/typescript
View Raw
1
2
3
4
5
6
7
export
interface
IOnInit
{
onInit
():
Promise
<
void
> |
void
; }
export
const
OnInit
: keyof
IOnInit
=
'onInit'
;