6 lines
150 B
TypeScript
6 lines
150 B
TypeScript
export interface SyncFrequencyGuardInterface {
|
|
incrementCallsPerMinute(): void
|
|
isSyncCallsThresholdReachedThisMinute(): boolean
|
|
clear(): void
|
|
}
|