Rocky_Mountain_Vending/.pnpm-store/v10/files/09/2aecd16411fabad3e39e1f705f98de126c7664127a49abef072277bb16971f2e45625228e6d9ea7426a77a14a98196553997e3d3ed467865138c6514160211
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

18 lines
476 B
Text

export type ViewHierarchyWindow = {
alpha: number;
height: number;
type: string;
visible: boolean;
width: number;
x: number;
y: number;
z?: number;
children?: ViewHierarchyWindow[];
depth?: number;
identifier?: string;
} & Record<string, string | number | boolean>;
export type ViewHierarchyData = {
rendering_system: string;
windows: ViewHierarchyWindow[];
};
//# sourceMappingURL=view-hierarchy.d.ts.map