chore: Enforce consistent type imports via @typescript-eslint/consistent-type-imports (#2545)

This commit is contained in:
Dermot Duffy
2026-06-30 17:45:13 -07:00
committed by dermotduffy
parent 8f4ebcc0de
commit 7dc29865b8
589 changed files with 2419 additions and 2103 deletions
+1 -1
View File
@@ -1,4 +1,4 @@
import { CacheInterface } from './types.js';
import type { CacheInterface } from './types.js';
export class CacheBase<Key, Value> implements CacheInterface<Key, Value> {
private _cache: Map<Key, Value>;
+1 -1
View File
@@ -1,5 +1,5 @@
import { EqualityCache } from './equality-cache';
import { CacheInterface } from './types';
import type { CacheInterface } from './types';
interface ExpiringValue<Value> {
value: Value;