From c1527dcf80ffdc54b3e5bfb29f747c1114741fc0 Mon Sep 17 00:00:00 2001 From: Johann Schopplich Date: Sun, 2 Nov 2025 18:34:00 +0100 Subject: [PATCH] chore: fix type issue --- benchmarks/src/storage.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/benchmarks/src/storage.ts b/benchmarks/src/storage.ts index aab9287..9bb469e 100644 --- a/benchmarks/src/storage.ts +++ b/benchmarks/src/storage.ts @@ -2,6 +2,7 @@ import type { Storage, StorageValue } from 'unstorage' import type { EvaluationResult } from './types' import * as path from 'node:path' import { createStorage } from 'unstorage' +// @ts-expect-error: No types available import fsDriver from 'unstorage/drivers/fs' import { BENCHMARKS_DIR } from './constants'