Rocky_Mountain_Vending/.pnpm-store/v10/files/1a/7f09f978726655b3f6e76e33cc8bda1aec4590d34424eca308f1c5408bd4438e4083229c8a710bb22ae5df6df3a236679e804999a2afe2bd41ea20052d1a7b
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

16 lines
428 B
Text

/// <reference types="node" />
/// <reference types="node" />
import { Readable } from 'stream';
import { GetUriProtocol } from './';
declare class DataReadable extends Readable {
hash?: string;
constructor(hash: string, buf: Buffer);
}
export interface DataOptions {
cache?: DataReadable;
}
/**
* Returns a Readable stream from a "data:" URI.
*/
export declare const data: GetUriProtocol<DataOptions>;
export {};