Skip to content
This repository has been archived by the owner on Oct 30, 2022. It is now read-only.

Commit

Permalink
add executablePath to LaunchOptions (justinwoo#19)
Browse files Browse the repository at this point in the history
add executablePath to LaunchOptions
  • Loading branch information
Cmdv authored Dec 9, 2019
2 parents 94ca3f2 + 4a21cf3 commit c8bb712
Showing 1 changed file with 10 additions and 9 deletions.
19 changes: 10 additions & 9 deletions src/Toppoki.purs
Original file line number Diff line number Diff line change
Expand Up @@ -27,20 +27,21 @@ newtype Selector = Selector String
derive instance newtypeSelector :: Newtype Selector _

type LaunchOptions =
( headless :: Boolean
, args :: Array String
, ignoreDefaultArgs :: Array String
, ignoreHTTPSErrors :: Boolean
, slowMo :: Number
( args :: Array String
, defaultViewport :: Record DefaultViewPort
, devtools :: Boolean
, dumpio :: Boolean
, executablePath :: String
, handleSIGHUP :: Boolean
, handleSIGINT :: Boolean
, handleSIGTERM :: Boolean
, handleSIGHUP :: Boolean
, headless :: Boolean
, ignoreDefaultArgs :: Array String
, ignoreHTTPSErrors :: Boolean
, pipe :: Boolean
, slowMo :: Number
, timeout :: Number
, dumpio :: Boolean
, userDataDir :: String
, devtools :: Boolean
, pipe :: Boolean
)

type DefaultViewPort =
Expand Down

0 comments on commit c8bb712

Please sign in to comment.