UNPKG

ngx-contextual-action-bar

Version:

ngx-contextual-action-bar is an Angular2+ implementation of the [Material Design Contextual Action Bar](https://material.io/components/app-bars-top#contextual-action-bar). The implementation makes it possible to change the action bar properties (i.e. titl

10 lines (9 loc) 345 B
import { ElementRef, OnDestroy } from '@angular/core'; import { Observable } from 'rxjs'; export declare class ScrollhandlerDirective implements OnDestroy { el: ElementRef<HTMLElement>; scrollHeight: Observable<number>; scrolled$: Observable<number>; constructor(el: ElementRef<HTMLElement>); ngOnDestroy(): void; }