Skip to content

Commit 8132b71

Browse files
committed
Merge branch 'develop' into amy/visualizeAxTree
2 parents 257e289 + ea17dd4 commit 8132b71

File tree

17 files changed

+781
-177
lines changed

17 files changed

+781
-177
lines changed

src/app/FrontendTypes.ts

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,7 @@ export interface TooltipData {
5454
x: number;
5555
y: number;
5656
color: string;
57+
name?: string;
5758
}
5859

5960
export interface snapshot {
@@ -383,3 +384,16 @@ export interface Snapshots {
383384
export interface ErrorContainerProps {
384385
port: chrome.runtime.Port | null;
385386
}
387+
388+
export interface AxContainer {
389+
axSnapshots: [];
390+
snapshot: {
391+
name?: string;
392+
componentData?: object;
393+
state?: string | object;
394+
stateSnaphot?: object;
395+
children?: any[];
396+
};
397+
snapshots: [];
398+
currLocation: object;
399+
}

0 commit comments

Comments
 (0)