From 430d273783ada20e66058928169761e32be3eedf Mon Sep 17 00:00:00 2001 From: Mqxx <62719703+Mqxx@users.noreply.github.com> Date: Thu, 10 Sep 2026 16:24:06 +0200 Subject: [PATCH] fix: as const --- jsr/src/bin/index.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/jsr/src/bin/index.ts b/jsr/src/bin/index.ts index ce865c4..93165ee 100644 --- a/jsr/src/bin/index.ts +++ b/jsr/src/bin/index.ts @@ -120,7 +120,7 @@ const aarch64 = { * runtime-specific FFI adapters. */ ffi: aarch64ffi, -}; +} as const; /** * The serialized `x86_64-linux-gnu` shared library and its FFI metadata. @@ -139,6 +139,6 @@ const x86_64 = { * runtime-specific FFI adapters. */ ffi: x86_64ffi, -}; +} as const; export { aarch64, x86_64 };