feat(core-shared/jobs): IJobQueue interface

This commit is contained in:
2026-05-08 11:35:15 +02:00
parent e85c89144b
commit cf32175684

View File

@@ -0,0 +1,7 @@
export interface IJobQueue {
enqueue<T>(
taskSlug: string,
input: T,
options?: { runAt?: Date },
): Promise<{ jobId: string }>;
}