1880e0402ae86683a0036e5cbc7d0c506ed3433c3cc35559212c91ca543960c8b7e41c57504acf4dfbbd0f9076ddb985f6c33f69463f84624cf016ad1b963e 476 B

12345678910
  1. declare const anyCatcherSymbol: unique symbol;
  2. /**
  3. * This is just a type that we're using to identify `any` being passed to
  4. * function overloads. This is used because of situations like {@link forkJoin},
  5. * where it could return an `Observable<T[]>` or an `Observable<{ [key: K]: T }>`,
  6. * so `forkJoin(any)` would mean we need to return `Observable<unknown>`.
  7. */
  8. export declare type AnyCatcher = typeof anyCatcherSymbol;
  9. export {};
  10. //# sourceMappingURL=AnyCatcher.d.ts.map