Rocky_Mountain_Vending/.pnpm-store/v10/files/ff/e04952e6deb7235c3bfdbe54c5324876f54adb9e60faf8564ac08e3e061594217cbe54b1c7d60787d851f4ae9f09ece170b8107f6443fa7667978ec0c91727
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

12 lines
377 B
Text

import { Message } from "./Message";
export interface NegativeTestVector {
expectation: "failure";
encoded: Uint8Array;
}
export interface PositiveTestVector {
expectation: "success";
encoded: Uint8Array;
decoded: Message;
}
export type TestVector = NegativeTestVector | PositiveTestVector;
export type TestVectors = Record<string, TestVector>;