@isopodlabs/binary_libs 1.0.0 → 1.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/dist/mach.d.ts +4 -1
  2. package/package.json +1 -1
package/dist/mach.d.ts CHANGED
@@ -471,7 +471,10 @@ declare const cmd_table: {
471
471
  export declare class MachFile {
472
472
  static check(data: Uint8Array): boolean;
473
473
  header: binary.ReadType<typeof header>;
474
- private commands;
474
+ commands: {
475
+ cmd: CMD;
476
+ data: any;
477
+ }[];
475
478
  constructor(data: Uint8Array, mem?: binary.memory);
476
479
  load(data: Uint8Array, be: boolean, bits: 32 | 64, mem?: binary.memory): void;
477
480
  getCommand<T extends CMD>(cmd: T): binary.ReadType<typeof cmd_table[T]>;
package/package.json CHANGED
@@ -41,5 +41,5 @@
41
41
  "dependencies": {
42
42
  "@isopodlabs/binary": "^1.0.3"
43
43
  },
44
- "version": "1.0.0"
44
+ "version": "1.0.1"
45
45
  }