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>
23 lines
371 B
Text
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 {}
|