chore: migrate src/Events to TypeScript (#5724)

This commit is contained in:
Jack Franklin 2020-04-23 12:52:09 +01:00 committed by GitHub
parent 18238280df
commit 30aff827ea
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -14,7 +14,7 @@
* limitations under the License. * limitations under the License.
*/ */
const Events = { export const Events = {
Page: { Page: {
Close: 'close', Close: 'close',
Console: 'console', Console: 'console',
@ -75,6 +75,4 @@ const Events = {
CDPSession: { CDPSession: {
Disconnected: Symbol('Events.CDPSession.Disconnected'), Disconnected: Symbol('Events.CDPSession.Disconnected'),
}, },
}; } as const;
module.exports = {Events};