Initial commit of working RSS Aggregator build
This commit is contained in:
+12
@@ -0,0 +1,12 @@
|
||||
export interface RateLimiterOptions {
|
||||
/**
|
||||
* Max number of jobs to process in the time period
|
||||
* specified in `duration`.
|
||||
*/
|
||||
max: number;
|
||||
/**
|
||||
* Time in milliseconds. During this time, a maximum
|
||||
* of `max` jobs will be processed.
|
||||
*/
|
||||
duration: number;
|
||||
}
|
||||
Reference in New Issue
Block a user