pxt-microbit 7.1.2 → 7.1.4

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.
package/built/sim.d.ts CHANGED
@@ -415,6 +415,8 @@ declare namespace pxsim.flashlog {
415
415
  export function clear(fullErase: boolean): void;
416
416
  export function setTimeStamp(format: FlashLogTimeStampFormat): void;
417
417
  export function setSerialMirroring(enabled: boolean): void;
418
+ export function getNumberOfRows(fromRowIndex?: number): number;
419
+ export function getRows(fromRowIndex: number, nRows: number): string;
418
420
  export {};
419
421
  }
420
422
  declare namespace pxsim {
package/built/sim.js CHANGED
@@ -2401,6 +2401,14 @@ var pxsim;
2401
2401
  mirrorToSerial = !!enabled;
2402
2402
  }
2403
2403
  flashlog.setSerialMirroring = setSerialMirroring;
2404
+ function getNumberOfRows(fromRowIndex = 0) {
2405
+ return 0; // TODO
2406
+ }
2407
+ flashlog.getNumberOfRows = getNumberOfRows;
2408
+ function getRows(fromRowIndex, nRows) {
2409
+ return ""; // TODO
2410
+ }
2411
+ flashlog.getRows = getRows;
2404
2412
  })(flashlog = pxsim.flashlog || (pxsim.flashlog = {}));
2405
2413
  })(pxsim || (pxsim = {}));
2406
2414
  var pxsim;