Rocky_Mountain_Vending/.pnpm-store/v10/files/aa/27ae8d04c9dc66be54ff3bfe703cdc9613d53d4842cc0b69466d14d71597235e2816efc639d919ef59654a80153375eb3514cee0f11bb6c5c6ae2ed8b7d294
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

14 lines
721 B
Text

import type { CssResource } from '../../build/webpack/plugins/flight-manifest-plugin';
import type { AppRenderContext } from './app-render';
import type { PreloadCallbacks } from './types';
/**
* Abstracts the rendering of CSS files based on whether they are inlined or not.
* For inlined CSS, renders a <style> tag with the CSS content directly embedded.
* For external CSS files, renders a <link> tag pointing to the CSS file.
*/
export declare function renderCssResource(entryCssFiles: CssResource[], ctx: AppRenderContext, preloadCallbacks?: PreloadCallbacks): import("react").DetailedReactHTMLElement<{
key: number;
nonce: string | undefined;
precedence: string;
href: string;
}, HTMLElement>[];