From c96a1ab7ff55541c2ac1c0fc82c6974aa896c7a9 Mon Sep 17 00:00:00 2001 From: mincomk Date: Wed, 4 Jun 2025 04:13:25 +0900 Subject: [PATCH] fix: peripheral.find --- package.json | 2 +- types/index.d.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index a0e2a8f..0e89f68 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "computercraft-ts", - "version": "1.0.5", + "version": "1.0.6", "description": "", "license": "ISC", "author": "", diff --git a/types/index.d.ts b/types/index.d.ts index b1a7c38..62d96cf 100644 --- a/types/index.d.ts +++ b/types/index.d.ts @@ -1104,7 +1104,7 @@ declare global { */ function find( peripheralType: string, - filter?: (name: string, wrapped: any) => boolean, + filter?: (name: string, wrapped?: any) => boolean, ): [string, any][]; /**