Front end of the Slack clone application.

materialize.d.ts 173B

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