map-symbols-to-notifications.d.ts 235 B

12345
  1. import { ObservableNotification } from 'rxjs';
  2. import { TestMessages } from './types';
  3. export declare function mapSymbolsToNotifications(marbles: string, messagesArg: TestMessages): {
  4. [key: string]: ObservableNotification<any>;
  5. };