Rocky_Mountain_Vending/.pnpm-store/v10/files/ea/2afd91f19df1c2c03d440f1beacfdabef58300311e46f3b65844688ce0c608ad85746d0dbe141391c07b64b7a8a0017f3250c0d7b0d078024feb3daa830313
DMleadgen 46d973904b
Initial commit: Rocky Mountain Vending website
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>
2026-02-12 16:22:15 -07:00

17 lines
No EOL
558 B
Text

export interface SequenceError extends Error {
}
export interface SequenceErrorCtor {
/**
* @deprecated Internal implementation detail. Do not construct error instances.
* Cannot be tagged as internal: https://github.com/ReactiveX/rxjs/issues/6269
*/
new (message: string): SequenceError;
}
/**
* An error thrown when something is wrong with the sequence of
* values arriving on the observable.
*
* @see {@link operators/single}
*/
export declare const SequenceError: SequenceErrorCtor;
//# sourceMappingURL=SequenceError.d.ts.map