6eac22dd87
This patch: - adds event linting to the doclint - improves `api.md` to add events and more information about classes reported by events. References #14.
18 lines
138 B
JavaScript
18 lines
138 B
JavaScript
class Foo {
|
|
constructor() {
|
|
this.ddd = 10;
|
|
}
|
|
|
|
aaa() {}
|
|
|
|
bbb() {}
|
|
|
|
ccc() {}
|
|
}
|
|
|
|
Foo.Events = {
|
|
a: 'a',
|
|
b: 'b',
|
|
c: 'c'
|
|
}
|