mirror of
https://github.com/puppeteer/puppeteer
synced 2024-06-14 14:02:48 +00:00
18 lines
200 B
JavaScript
18 lines
200 B
JavaScript
|
class A {
|
||
|
constructor(delegate) {
|
||
|
this.property1 = 1;
|
||
|
this._property2 = 2;
|
||
|
}
|
||
|
|
||
|
get getter() {
|
||
|
return null;
|
||
|
}
|
||
|
|
||
|
async method(foo, bar) {
|
||
|
}
|
||
|
}
|
||
|
|
||
|
A.Events = {
|
||
|
AnEvent: 'anevent'
|
||
|
};
|