1
0
mirror of https://github.com/bitwarden/browser synced 2026-02-14 15:33:55 +00:00

Minor manual fixes to build

This commit is contained in:
Hinton
2025-07-22 18:26:56 +02:00
parent 74cac51fcd
commit 0135cf0383
3 changed files with 4 additions and 2 deletions

View File

@@ -5,6 +5,8 @@ import { ScheduledTaskName } from "../scheduling/scheduled-task-name.enum";
import { TaskSchedulerService } from "../scheduling/task-scheduler.service";
export class DefaultTaskSchedulerService extends TaskSchedulerService {
protected taskHandlers: Map<string, () => void>;
constructor(protected logService: LogService) {
super();

View File

@@ -64,7 +64,7 @@ class TaskSchedulerSheduler implements SchedulerLike {
}
export abstract class TaskSchedulerService {
protected taskHandlers: Map<string, () => void>;
protected abstract taskHandlers: Map<string, () => void>;
abstract setTimeout(taskName: ScheduledTaskName, delayInMs: number): Subscription;
abstract setInterval(
taskName: ScheduledTaskName,