We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c4097c3 commit 11200f0Copy full SHA for 11200f0
src/ts/typing/har.ts
@@ -6,13 +6,22 @@
6
* http://www.softwareishard.com/blog/har-12-spec/#log
7
*/
8
export interface Har {
9
+ /** Version number of the format. If empty, string "1.1" is assumed by default. */
10
version: string;
11
+ /** Name and version info of the log creator application. */
12
creator: Creator;
13
+ /** Name and version info of used browser. */
14
browser?: Browser;
15
+ /**
16
+ * List of all exported (tracked) pages.
17
+ *
18
+ * _Leave out this field if the application does not support grouping by pages._
19
+ */
20
pages?: Page[];
21
+ /** List of all exported (tracked) requests. */
22
entries: Entry[];
23
+ /** A comment provided by the user or the application. */
24
comment?: string;
- label?: string; // TODO: Verify if this does exist
25
}
26
27
/**
0 commit comments