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

11
types/cc/expect.d.ts vendored Normal file
View File

@@ -0,0 +1,11 @@
/** @noSelfInFile **/
/** @noResolution **/
declare module "cc/expect" {
namespace expect {
function expect(index: number, value: any, ...types: string[]): any;
function field(tbl: Object|LuaTable, index: string, ...types: string[]): any;
function range(num: number, min?: number, max?: number): number;
}
function expect(index: number, value: any, ...types: string[]): any;
export = expect;
}