Rocky_Mountain_Vending/.pnpm-store/v10/files/9f/bb193c211ecc5b62a19c0e163776032466405ece0761701a54c9f3fde241574bf3f466f6121075df274fb4dfacdc7ca0d33ee53c65f097d0c0aac87f0881fb
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

27 lines
1.2 KiB
Text

/// <reference types="node" />
import type { ReactElement } from 'react';
import type { ImageResponseNodeOptions, ImageResponseOptions, FigmaImageResponseProps } from './types';
import { Readable } from 'stream';
export declare class ImageResponse extends Response {
constructor(element: ReactElement, options?: ImageResponseOptions);
}
/**
* Creates a pipeable stream of the rendered image in a lambda function.
* All parameters are the same as `ImageResponse`.
* @example
* ```js
* import { unstable_createNodejsStream } from '@vercel/og'
*
* export default async (req, res) => {
* const stream = await unstable_createNodejsStream(<div>Hello World</div>, { ... })
* res.setHeader('Content-Type', 'image/png')
* res.setHeader('Cache-Control', 'public, max-age=31536000, immutable')
* res.statusCode = 200
* res.statusMessage = 'OK'
* stream.pipe(res)
* }
* ```
*/
export declare function unstable_createNodejsStream(element: ReactElement, options?: Omit<ImageResponseNodeOptions, 'status' | 'statusText' | 'headers'>): Promise<Readable>;
export declare const experimental_FigmaImageResponse: (props: FigmaImageResponseProps) => Promise<import("./index.edge").ImageResponse>;
export type NodeImageResponse = typeof ImageResponse;