0
0
mirror of https://github.com/puppeteer/puppeteer synced 2024-06-14 14:02:48 +00:00
puppeteer/utils/doclint/test/07-sorting/foo.js
Andrey Lushnikov 6eac22dd87 [doclint] lint events
This patch:
- adds event linting to the doclint
- improves `api.md` to add events and more information about
  classes reported by events.

References .
2017-07-14 23:52:13 -07:00

18 lines
138 B
JavaScript

class Foo {
constructor() {
this.ddd = 10;
}
aaa() {}
bbb() {}
ccc() {}
}
Foo.Events = {
a: 'a',
b: 'b',
c: 'c'
}