pxt-core 9.3.4 → 9.3.5
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/pxt.js +39 -2
- package/built/pxtcompiler.d.ts +1 -0
- package/built/pxtcompiler.js +19 -0
- package/built/pxtlib.d.ts +2 -0
- package/built/pxtlib.js +20 -2
- package/built/target.js +1 -1
- package/built/web/main.js +1 -1
- package/built/web/pxtapp.js +1 -1
- package/built/web/pxtcompiler.js +1 -1
- package/built/web/pxtembed.js +1 -1
- package/built/web/pxtlib.js +1 -1
- package/built/web/pxtworker.js +1 -1
- package/localtypings/pxtarget.d.ts +1 -0
- package/package.json +1 -1
|
@@ -738,6 +738,7 @@ declare namespace ts.pxtc {
|
|
|
738
738
|
flashChecksumAddr?: number;
|
|
739
739
|
ramSize?: number;
|
|
740
740
|
patches?: pxt.Map<UpgradePolicy[]>; // semver range -> upgrade policies
|
|
741
|
+
pyPatches?: pxt.Map<UpgradePolicy[]>; // semver range -> upgrade policies
|
|
741
742
|
openocdScript?: string;
|
|
742
743
|
uf2Family?: string;
|
|
743
744
|
onStartText?: boolean;
|