Rocky_Mountain_Vending/.pnpm-store/v10/files/a0/1013cb087bdaf6f71b0349cc61ec07ab45266582fc197523f6c094a47a45dd4848b72aecb90a2d73a97007a927b91f04fa6c17ec98805750f61f29e621f43c
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
No EOL
457 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