File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -130,7 +130,7 @@ export class FirebaseFunctionsRateLimiter {
130
130
*/
131
131
public async rejectOnQuotaExceededOrRecordUsage (
132
132
qualifier ?: string ,
133
- errorFactory ?: ( config : FirebaseFunctionsRateLimiterConfiguration ) => Error ,
133
+ errorFactory ?: ( config : FirebaseFunctionsRateLimiterConfiguration . ConfigurationFull ) => Error ,
134
134
) : Promise < void > {
135
135
const isExceeded = await this . genericRateLimiter . isQuotaExceededOrRecordCall (
136
136
qualifier || FirebaseFunctionsRateLimiter . DEFAULT_QUALIFIER ,
@@ -155,7 +155,7 @@ export class FirebaseFunctionsRateLimiter {
155
155
/**
156
156
* Returns this rate limiter configuration
157
157
*/
158
- public getConfiguration ( ) : FirebaseFunctionsRateLimiterConfiguration {
158
+ public getConfiguration ( ) : FirebaseFunctionsRateLimiterConfiguration . ConfigurationFull {
159
159
return this . configurationFull ;
160
160
}
161
161
You can’t perform that action at this time.
0 commit comments