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>
17 lines
No EOL
542 B
Text
17 lines
No EOL
542 B
Text
export interface NotFoundError extends Error {
|
|
}
|
|
export interface NotFoundErrorCtor {
|
|
/**
|
|
* @deprecated Internal implementation detail. Do not construct error instances.
|
|
* Cannot be tagged as internal: https://github.com/ReactiveX/rxjs/issues/6269
|
|
*/
|
|
new (message: string): NotFoundError;
|
|
}
|
|
/**
|
|
* An error thrown when a value or values are missing from an
|
|
* observable sequence.
|
|
*
|
|
* @see {@link operators/single}
|
|
*/
|
|
export declare const NotFoundError: NotFoundErrorCtor;
|
|
//# sourceMappingURL=NotFoundError.d.ts.map |