techdocs-backend: remove unnecessary export of CachedEntityLoaderOptions

The CachedEntityLoaderOptions type is only used internally by
CachedEntityLoader and is never imported by any other file.

Signed-off-by: Patrik Oldsberg <poldsberg@gmail.com>
Made-with: Cursor
This commit is contained in:
Patrik Oldsberg
2026-04-14 14:21:36 +02:00
parent c6abc52e1f
commit dd8d2ee3ba
@@ -25,7 +25,7 @@ import {
} from '@backstage/catalog-model';
import { CatalogService } from '@backstage/plugin-catalog-node';
export type CachedEntityLoaderOptions = {
type CachedEntityLoaderOptions = {
catalog: CatalogService;
cache: CacheService;
};