chore: convert extension apis to TypeScript (#18688)

Converts extensions-related files to TS
This commit is contained in:
Shelley Vohr 2019-06-14 07:52:24 -07:00 committed by GitHub
parent 6e327184bd
commit ffb53405fb
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
6 changed files with 66 additions and 85 deletions

View file

@ -0,0 +1,20 @@
export class Event {
private listeners: Function[] = []
addListener (callback: Function) {
this.listeners.push(callback)
}
removeListener (callback: Function) {
const index = this.listeners.indexOf(callback)
if (index !== -1) {
this.listeners.splice(index, 1)
}
}
emit (...args: any[]) {
for (const listener of this.listeners) {
listener(...args)
}
}
}