mirror of
https://github.com/richard-loafle/fuse-angular.git
synced 2025-01-11 04:55:07 +00:00
22 lines
262 B
TypeScript
22 lines
262 B
TypeScript
import { Injectable } from '@angular/core';
|
|
|
|
@Injectable()
|
|
export class FuseNavbarService
|
|
{
|
|
navBarRef;
|
|
|
|
constructor()
|
|
{
|
|
}
|
|
|
|
setNavBar(ref)
|
|
{
|
|
this.navBarRef = ref;
|
|
}
|
|
|
|
getNavBar()
|
|
{
|
|
return this.navBarRef;
|
|
}
|
|
}
|