Fix TS type

This commit is contained in:
Abdo 2025-10-19 05:56:43 +03:00
parent e7bfb73f72
commit 6cab377083

View file

@ -3,7 +3,7 @@
export class ChangeTimer {
private value: number | null = null;
private action: (() => void) | null = null;
private action: (() => Promise<void>) | null = null;
constructor() {
this.fireImmediately = this.fireImmediately.bind(this);