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>
18 lines
No EOL
457 B
Text
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 |