Rocky_Mountain_Vending/.pnpm-store/v10/files/bd/714a7e5c6a9c5eeb0fb9045346539f8089614f48f00d2f1b3c67b245380f33c68eae769a89c13476543200f3805fd64838f5f3d28100c3b9135c3afae28821
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

23 lines
371 B
Text

export class Deserializer {
readHeader() {
return false;
}
readValue() {}
transferArrayBuffer(id, arrayBuffer) {}
getWireFormatVersion() {
return 0;
}
readUint32() {
return 0;
}
readUint64() {
return [0, 0];
}
readDouble() {
return 0;
}
readRawBytes(length) {
return Buffer.from("");
}
}
export class DefaultDeserializer extends Deserializer {}