Files
qinglong/back/runtime/ports/primaryRunIdempotencyLookup.ts

4 lines
129 B
TypeScript

export interface PrimaryRunIdempotencyLookup {
findRunId(projectId: string, idempotencyKey: string): Promise<string | null>;
}