mirror of
https://github.com/whyour/qinglong.git
synced 2026-09-21 00:38:14 +08:00
4 lines
129 B
TypeScript
4 lines
129 B
TypeScript
export interface PrimaryRunIdempotencyLookup {
|
|
findRunId(projectId: string, idempotencyKey: string): Promise<string | null>;
|
|
}
|