finish basic autocraft for create store

This commit is contained in:
2025-10-07 22:15:41 +08:00
parent c8eeb4f354
commit d3cbc15450
26 changed files with 3386 additions and 0 deletions

14
types/advanced-peripherals/index.d.ts vendored Normal file
View File

@@ -0,0 +1,14 @@
declare interface BlockItemDetailData {
id: string;
tag: object;
Count: number;
Slot: number;
}
declare interface BlockDetailData {
Items: Record<number, BlockItemDetailData>;
}
declare class BlockReaderPeripheral {
getBlockData(): BlockDetailData;
}

View File

@@ -0,0 +1,11 @@
{
"name": "@sikongjueluo/advanced-peripherals-types",
"version": "1.0.0",
"description": "TypeScript type definitions for base Advanced Peripherals APIs.",
"types": "./index.d.ts",
"files": [
"./index.d.ts"
],
"author": "SikongJueluo",
"license": "MIT"
}