Skip to content

Commit 0b92bf8

Browse files
committed
[SceEvent] Prettier & more types
1 parent 7ff3684 commit 0b92bf8

File tree

1 file changed

+14
-5
lines changed

1 file changed

+14
-5
lines changed

index.d.ts

+14-5
Original file line numberDiff line numberDiff line change
@@ -14,17 +14,26 @@ export interface SceEvent {
1414

1515
relativeXPath: string;
1616
relativeXPathFromElement: {
17-
id: string|null;
17+
id: string | null;
1818
name: string;
1919
type: number;
2020
};
21-
21+
event: {
22+
type: string;
23+
target: {
24+
elementClass: string;
25+
elementId: string;
26+
attributes: string;
27+
value: string;
28+
location: null | string;
29+
};
30+
};
2231
sumanEventId: number;
2332
xpath: {
2433
bodyXPath: string;
25-
classXPath: string|null;
26-
idXPath: string|null;
27-
}
34+
classXPath: string | null;
35+
idXPath: string | null;
36+
};
2837
}
2938

3039
export type SCECodeGenTypeContainer = {

0 commit comments

Comments
 (0)