UNPKG

476 BTypeScriptView Raw
1declare 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 */
8export declare type AnyCatcher = typeof anyCatcherSymbol;
9export {};
10//# sourceMappingURL=AnyCatcher.d.ts.map
\No newline at end of file