-
Notifications
You must be signed in to change notification settings - Fork 3.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
`protocol.d.ts` had to move to `protocol.ts` otherwise typescript refuses to include it in the out directory. Removed the old d.ts generator. It will need to be rewritten anyway. These new types include private stuff that they probably shouldn't, and are missing documentation. I'll follow up with a better d.ts generator later. #6
- Loading branch information
1 parent
1c9103e
commit 57313e3
Showing
10 changed files
with
27 additions
and
534 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
// Copyright (c) Microsoft Corporation. | ||
// Licensed under the MIT license. | ||
import * as chromium from './chromium'; | ||
import * as firefox from './firefox'; | ||
import * as webkit from './webkit'; | ||
declare function pickBrowser(browser: 'chromium'): typeof chromium; | ||
declare function pickBrowser(browser: 'firefox'): typeof firefox; | ||
declare function pickBrowser(browser: 'webkit'): typeof webkit; | ||
export = pickBrowser; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.