Skip to content

Commit

Permalink
Fix jsdoc
Browse files Browse the repository at this point in the history
  • Loading branch information
haqadn committed May 15, 2023
1 parent 2d63046 commit 075a6d0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/browser-interface-playwright.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@ export class BrowserInterfacePlaywright extends BrowserInterface {
*
* Take a browser instance and an array of urls to open in new tabs.
*
* @param {string[]} urls - Array of urls to open.
* @param {BrowserContext} context - Browser context to use.
* @param {string[]} urls - Array of urls to open.
* @return {Promise< TabsByUrl >} Promise resolving to the browser context.
*/
private async openUrls( context: BrowserContext, urls: string[] ): Promise< void > {
Expand All @@ -49,8 +49,8 @@ export class BrowserInterfacePlaywright extends BrowserInterface {
/**
* Open url in a new tab in a given browserContext.
*
* @param {string} url - Url to open.
* @param {BrowserContext} browserContext - Browser context to use.
* @param {string} url - Url to open.
* @return {Promise<Page>} Promise resolving to the page instance.
*/
private async newTab( browserContext: BrowserContext, url: string ): Promise< Tab > {
Expand Down

0 comments on commit 075a6d0

Please sign in to comment.