website refactor
This commit is contained in:
@@ -1,15 +1,15 @@
|
||||
export class MockAutomationLifecycleEmitter {
|
||||
private callbacks: Set<(event: any) => Promise<void> | void> = new Set()
|
||||
private callbacks: Set<(event: unknown) => Promise<void> | void> = new Set()
|
||||
|
||||
onLifecycle(cb: (event: any) => Promise<void> | void): void {
|
||||
onLifecycle(cb: (event: unknown) => Promise<void> | void): void {
|
||||
this.callbacks.add(cb)
|
||||
}
|
||||
|
||||
offLifecycle(cb: (event: any) => Promise<void> | void): void {
|
||||
offLifecycle(cb: (event: unknown) => Promise<void> | void): void {
|
||||
this.callbacks.delete(cb)
|
||||
}
|
||||
|
||||
async emit(event: any): Promise<void> {
|
||||
async emit(event: unknown): Promise<void> {
|
||||
for (const cb of Array.from(this.callbacks)) {
|
||||
try {
|
||||
await cb(event)
|
||||
|
||||
Reference in New Issue
Block a user