Front end of the Slack clone application.

skipLast.d.ts 161B

1234567
  1. import { skipLast } from '../../operator/skipLast';
  2. declare module '../../Observable' {
  3. interface Observable<T> {
  4. skipLast: typeof skipLast;
  5. }
  6. }