(FuseVerticalNavigation) Added missing return types

This commit is contained in:
sercan 2021-05-18 14:12:38 +03:00
parent 5c40e99518
commit f76f38b812

View File

@ -73,10 +73,10 @@ export class FuseVerticalNavigationComponent implements OnChanges, OnInit, After
private _fuseUtilsService: FuseUtilsService private _fuseUtilsService: FuseUtilsService
) )
{ {
this._handleAsideOverlayClick = () => { this._handleAsideOverlayClick = (): void => {
this.closeAside(); this.closeAside();
}; };
this._handleOverlayClick = () => { this._handleOverlayClick = (): void => {
this.close(); this.close();
}; };
} }