Skip to content

Commit

Permalink
fix(eslint): fix linter issues
Browse files Browse the repository at this point in the history
  • Loading branch information
siberex committed Oct 19, 2021
1 parent b5f4e36 commit 9781ec6
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/lru.ts
@@ -1,6 +1,6 @@
import LRUCache from 'mnemonist/lru-cache.js';
import {IArrayLikeConstructor} from 'mnemonist/utils/types';
import {TemplateFunction} from 'eta/dist/types/compile';
import {IArrayLikeConstructor} from 'mnemonist/utils/types.d';
import {TemplateFunction} from 'eta/dist/types/compile.d';

export class LRU {
private cache: LRUCache<string, TemplateFunction>;
Expand Down
2 changes: 1 addition & 1 deletion src/main.ts
Expand Up @@ -9,7 +9,7 @@ import {FastifyError} from 'fastify-error';
import fastifyStatic from 'fastify-static';
import pointOfView from 'point-of-view';
import * as eta from 'eta';
import {PartialConfig as EtaOptions} from 'eta/dist/types/config';
import {PartialConfig as EtaOptions} from 'eta/dist/types/config.d';
import glob from 'fast-glob';
import {ErrorPayload} from './types';
import {getUserCountry, trustedProxies} from './helpers';
Expand Down

0 comments on commit 9781ec6

Please sign in to comment.