diff options
| author | ST-DDT <[email protected]> | 2023-12-11 19:42:59 +0100 |
|---|---|---|
| committer | GitHub <[email protected]> | 2023-12-11 18:42:59 +0000 |
| commit | 1631115a6a9846c50473fe60ea5bdb7ce9d04084 (patch) | |
| tree | 6b9dcb203e31aea8ff2233ef60046278139ea71b /scripts/apidoc | |
| parent | 60dcfe7c6454327740d2253ed283deb59d420462 (diff) | |
| download | faker-1631115a6a9846c50473fe60ea5bdb7ce9d04084.tar.xz faker-1631115a6a9846c50473fe60ea5bdb7ce9d04084.zip | |
infra(tsconfig): noImplicitAny (#2562)
Diffstat (limited to 'scripts/apidoc')
| -rw-r--r-- | scripts/apidoc/typedoc.ts | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/scripts/apidoc/typedoc.ts b/scripts/apidoc/typedoc.ts index a795efa2..1e548c14 100644 --- a/scripts/apidoc/typedoc.ts +++ b/scripts/apidoc/typedoc.ts @@ -88,7 +88,8 @@ export function selectApiModules( .getChildrenByKind(ReflectionKind.Class) .filter( (module) => - faker[extractModuleFieldName(module)] != null || includeTestModules + faker[extractModuleFieldName(module) as keyof typeof faker] != null || + includeTestModules ); } |
