Next.js website for Rocky Mountain Vending company featuring: - Product catalog with Stripe integration - Service areas and parts pages - Admin dashboard with Clerk authentication - SEO optimized pages with JSON-LD structured data Co-authored-by: Cursor <cursoragent@cursor.com>
8 lines
No EOL
599 B
Text
8 lines
No EOL
599 B
Text
import { ObservableInputTuple, OperatorFunction } from '../types';
|
|
export declare function onErrorResumeNextWith<T, A extends readonly unknown[]>(sources: [...ObservableInputTuple<A>]): OperatorFunction<T, T | A[number]>;
|
|
export declare function onErrorResumeNextWith<T, A extends readonly unknown[]>(...sources: [...ObservableInputTuple<A>]): OperatorFunction<T, T | A[number]>;
|
|
/**
|
|
* @deprecated Renamed. Use {@link onErrorResumeNextWith} instead. Will be removed in v8.
|
|
*/
|
|
export declare const onErrorResumeNext: typeof onErrorResumeNextWith;
|
|
//# sourceMappingURL=onErrorResumeNextWith.d.ts.map |