Skip to content

Commit 11200f0

Browse files
author
Michael Mrowetz
committed
improve HAR type docs
1 parent c4097c3 commit 11200f0

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

Diff for: src/ts/typing/har.ts

+10-1
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,22 @@
66
* http://www.softwareishard.com/blog/har-12-spec/#log
77
*/
88
export interface Har {
9+
/** Version number of the format. If empty, string "1.1" is assumed by default. */
910
version: string;
11+
/** Name and version info of the log creator application. */
1012
creator: Creator;
13+
/** Name and version info of used browser. */
1114
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+
*/
1220
pages?: Page[];
21+
/** List of all exported (tracked) requests. */
1322
entries: Entry[];
23+
/** A comment provided by the user or the application. */
1424
comment?: string;
15-
label?: string; // TODO: Verify if this does exist
1625
}
1726

1827
/**

0 commit comments

Comments
 (0)