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>
15 lines
584 B
Text
15 lines
584 B
Text
import type { ChecksumStreamInit } from "./ChecksumStream.browser";
|
|
/**
|
|
* @internal
|
|
* Alias prevents compiler from turning
|
|
* ReadableStream into ReadableStream<any>, which is incompatible
|
|
* with the NodeJS.ReadableStream global type.
|
|
*/
|
|
export type ReadableStreamType = ReadableStream;
|
|
/**
|
|
* @internal
|
|
*
|
|
* Creates a stream adapter for throwing checksum errors for streams without
|
|
* buffering the stream.
|
|
*/
|
|
export declare const createChecksumStream: ({ expectedChecksum, checksum, source, checksumSourceLocation, base64Encoder, }: ChecksumStreamInit) => ReadableStreamType;
|