mirror of
https://github.com/puppeteer/puppeteer
synced 2024-06-14 14:02:48 +00:00
4e9e3bc614
This will allow us to break all dependency cycles that were forcing us to put many things in a single file (e.g. ExecutionContext and ElementHandle).
9 lines
133 B
JavaScript
9 lines
133 B
JavaScript
const Events = {
|
|
B: {
|
|
// Event with the same name as a super class method.
|
|
foo: 'foo',
|
|
},
|
|
};
|
|
|
|
module.exports = {Events};
|