Skip to content

Commit 2f385e8

Browse files
committed
chore: spacing / types
1 parent ce4f64e commit 2f385e8

File tree

3 files changed

+170
-4
lines changed

3 files changed

+170
-4
lines changed

Diff for: package-lock.json

+169-3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: packages/idempotency/src/persistence/BasePersistenceLayer.ts

+1
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,7 @@ abstract class BasePersistenceLayer implements BasePersistenceLayerInterface {
7272

7373
await this._deleteRecord(idempotencyRecord);
7474
}
75+
7576
/**
7677
* Retrieves idempotency key for the provided data and fetches data for that key from the persistence store
7778
*

Diff for: packages/idempotency/src/types/AnyFunction.ts

-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ type GenericTempRecord = Record<string, any>;
44

55
type AnyFunctionWithRecord<U> = (record: GenericTempRecord) => Promise<U> | U;
66

7-
// eslint-disable-next-line @typescript-eslint/no-explicit-any
87
type AnyIdempotentFunction<U> = (record: GenericTempRecord) => Promise<U>;
98

109
export {

0 commit comments

Comments
 (0)