chore: global sync per minute safety limit (#2765)

This commit is contained in:
Karol Sójko
2024-01-11 15:26:09 +01:00
committed by GitHub
parent 3d895ca499
commit cf4b5ccf0a
11 changed files with 140 additions and 10 deletions

View File

@@ -0,0 +1,5 @@
export interface SyncFrequencyGuardInterface {
incrementCallsPerMinute(): void
isSyncCallsThresholdReachedThisMinute(): boolean
clear(): void
}