Skip to content

Commit

Permalink
fix: type definitions (#135)
Browse files Browse the repository at this point in the history
  • Loading branch information
sumimakito committed Nov 3, 2023
1 parent edb108a commit c0022fb
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion typings/main.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -448,7 +448,7 @@ declare module 'har-to-k6' {
*
* Must be unique.
*/
pageRef?: string
pageref?: string

/**
* Date and time stamp of the request start (ISO 8601 - YYYY-MM-DDThh:mm:ss.sTZD).
Expand Down Expand Up @@ -632,7 +632,12 @@ declare module 'har-to-k6' {
sleep?: Sleep[]
}

export interface ExtendedPage extends Page {
sleep?: Sleep[]
}

export interface ExtendedLog extends Log {
pages?: ExtendedPage[]
entries: ExtendedEntry[]
}

Expand Down

0 comments on commit c0022fb

Please sign in to comment.