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>
16 lines
428 B
Text
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 {};
|