fix: peripheral.find

This commit is contained in:
2025-06-04 04:13:25 +09:00
parent 0e292afa02
commit c96a1ab7ff
2 changed files with 2 additions and 2 deletions

View File

@@ -1,6 +1,6 @@
{ {
"name": "computercraft-ts", "name": "computercraft-ts",
"version": "1.0.5", "version": "1.0.6",
"description": "", "description": "",
"license": "ISC", "license": "ISC",
"author": "", "author": "",

2
types/index.d.ts vendored
View File

@@ -1104,7 +1104,7 @@ declare global {
*/ */
function find( function find(
peripheralType: string, peripheralType: string,
filter?: (name: string, wrapped: any) => boolean, filter?: (name: string, wrapped?: any) => boolean,
): [string, any][]; ): [string, any][];
/** /**