Skip to content
This repository has been archived by the owner on Nov 18, 2023. It is now read-only.

Commit

Permalink
fix: eslint issue
Browse files Browse the repository at this point in the history
  • Loading branch information
thetutlage committed Feb 6, 2021
1 parent 5ebb961 commit 7f6cf78
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Manager.ts
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ export abstract class Manager<
):
| MappingsList[K]
| MappingValue
| { [K in keyof MappingsList]: MappingsList[K] }[keyof MappingsList] {
| { [Mapping in keyof MappingsList]: MappingsList[Mapping] }[keyof MappingsList] {
const mappingName = name || this.getDefaultMappingName()

const cached = this.getFromCache(mappingName)
Expand Down

0 comments on commit 7f6cf78

Please sign in to comment.