UNPKG

457 BTypeScriptView Raw
1export type ViewHierarchyWindow = {
2 alpha: number;
3 height: number;
4 type: string;
5 visible: boolean;
6 width: number;
7 x: number;
8 y: number;
9 z?: number;
10 children?: ViewHierarchyWindow[];
11 depth?: number;
12 identifier?: string;
13} & Record<string, string | number | boolean>;
14export type ViewHierarchyData = {
15 rendering_system: string;
16 windows: ViewHierarchyWindow[];
17};
18//# sourceMappingURL=view-hierarchy.d.ts.map
\No newline at end of file