Rocky_Mountain_Vending/.pnpm-store/v10/files/18/bf04239f7a09a348479182901aebe5c6ee501864f338de8910088e05aca053fd96092ebd766fee0b6f2c78952a661122df2167d59f591e69bff04a49225ce3
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

10 lines
221 B
Text

import type { ConditionObject, Expression } from "./shared";
/**
* @public
*/
export type ErrorRuleObject = {
type: "error";
conditions?: ConditionObject[];
error: Expression;
documentation?: string;
};