Roll back strict type improvements
This commit is contained in:
+2
-2
@@ -107,8 +107,8 @@ export class ModalManager extends TypedEventEmitter<ModalManagerEvent, HandlerMa
|
|||||||
modal.hidden = !modal.hidden;
|
modal.hidden = !modal.hidden;
|
||||||
}
|
}
|
||||||
|
|
||||||
public hasDialogs(): boolean {
|
public hasDialogs() {
|
||||||
return !!(this.priorityModal || this.staticModal || this.modals.length > 0);
|
return this.priorityModal || this.staticModal || this.modals.length > 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
public createDialog<T extends any[]>(
|
public createDialog<T extends any[]>(
|
||||||
|
|||||||
Reference in New Issue
Block a user