UNPKG

@hugogo/angular-grid-layout-hugo

Version:

Grid Layout with draggable and resizable items for Angular

7 lines (6 loc) 381 B
import { NgZone } from '@angular/core'; import { Observable } from 'rxjs'; /** Runs source observable outside the zone */ export declare function ktdOutsideZone<T>(zone: NgZone): (source: Observable<T>) => Observable<T>; /** Rxjs operator that makes source observable to no emit any data */ export declare function ktdNoEmit(): (source$: Observable<any>) => Observable<any>;