Skip to content

Commit

Permalink
fix: eslint fix.
Browse files Browse the repository at this point in the history
  • Loading branch information
chvarkov committed Sep 21, 2022
1 parent a3f4a69 commit 77bb1f3
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/interfaces/google-recaptcha-module-options.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,5 +18,6 @@ export interface GoogleRecaptchaModuleAsyncOptions extends Pick<ModuleMetadata,
inject?: Array<InjectionToken | OptionalFactoryDependency>;
useClass?: Type<GoogleRecaptchaOptionsFactory>;
useExisting?: Type<GoogleRecaptchaOptionsFactory>;
useFactory?: (...args: any[]) => Promise<GoogleRecaptchaModuleOptions> | GoogleRecaptchaModuleOptions; // eslint-disable-line no-explicit-any
// eslint-disable-next-line @typescript-eslint/no-explicit-any
useFactory?: (...args: any[]) => Promise<GoogleRecaptchaModuleOptions> | GoogleRecaptchaModuleOptions;
}

0 comments on commit 77bb1f3

Please sign in to comment.