Rocky_Mountain_Vending/.pnpm-store/v10/files/53/be91e1eb42a8653125f30c6ff9326d8d54ce53e4d94183ae16dec0fd9207faf6d09b9815594f134bf88b340ecf66ac71c245c954eef22fa41f92911cd8f3c5
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

65 lines
No EOL
2 KiB
Text

/**
* Tells whether current environment supports ErrorEvent objects
* {@link supportsErrorEvent}.
*
* @returns Answer to the given question.
*/
export declare function supportsErrorEvent(): boolean;
/**
* Tells whether current environment supports DOMError objects
* {@link supportsDOMError}.
*
* @returns Answer to the given question.
*/
export declare function supportsDOMError(): boolean;
/**
* Tells whether current environment supports DOMException objects
* {@link supportsDOMException}.
*
* @returns Answer to the given question.
*/
export declare function supportsDOMException(): boolean;
/**
* Tells whether current environment supports History API
* {@link supportsHistory}.
*
* @returns Answer to the given question.
*/
export declare function supportsHistory(): boolean;
/**
* Tells whether current environment supports Fetch API
* {@link supportsFetch}.
*
* @returns Answer to the given question.
* @deprecated This is no longer used and will be removed in a future major version.
*/
export declare const supportsFetch: typeof _isFetchSupported;
declare function _isFetchSupported(): boolean;
/**
* isNative checks if the given function is a native implementation
*/
export declare function isNativeFunction(func: Function): boolean;
/**
* Tells whether current environment supports Fetch API natively
* {@link supportsNativeFetch}.
*
* @returns true if `window.fetch` is natively implemented, false otherwise
*/
export declare function supportsNativeFetch(): boolean;
/**
* Tells whether current environment supports ReportingObserver API
* {@link supportsReportingObserver}.
*
* @returns Answer to the given question.
*/
export declare function supportsReportingObserver(): boolean;
/**
* Tells whether current environment supports Referrer Policy API
* {@link supportsReferrerPolicy}.
*
* @returns Answer to the given question.
* @deprecated This is no longer used and will be removed in a future major version.
*/
export declare function supportsReferrerPolicy(): boolean;
export {};
//# sourceMappingURL=supports.d.ts.map