source: trip-planner-front/node_modules/rxjs/internal/util/subscribeToArray.d.ts

Last change on this file was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago

initial commit

  • Property mode set to 100644
File size: 260 bytes
Line 
1import { Subscriber } from '../Subscriber';
2/**
3 * Subscribes to an ArrayLike with a subscriber
4 * @param array The array or array-like to subscribe to
5 */
6export declare const subscribeToArray: <T>(array: ArrayLike<T>) => (subscriber: Subscriber<T>) => void;
Note: See TracBrowser for help on using the repository browser.