pxt-core 7.3.10 → 7.4.6
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.
|
@@ -172,6 +172,8 @@ declare namespace pxt {
|
|
|
172
172
|
}
|
|
173
173
|
|
|
174
174
|
interface AppCloud {
|
|
175
|
+
// specify the desired api root, https://makecode.com/api/
|
|
176
|
+
apiRoot?: string;
|
|
175
177
|
workspaces?: boolean;
|
|
176
178
|
packages?: boolean;
|
|
177
179
|
sharing?: boolean; // uses cloud-based anonymous sharing
|
|
@@ -659,6 +661,7 @@ declare namespace ts.pxtc {
|
|
|
659
661
|
noSourceInFlash?: boolean;
|
|
660
662
|
useModulator?: boolean;
|
|
661
663
|
webUSB?: boolean; // use WebUSB when supported
|
|
664
|
+
disableHIDBridge?: boolean; // disable hid bridge
|
|
662
665
|
hexMimeType?: string;
|
|
663
666
|
moveHexEof?: boolean;
|
|
664
667
|
driveName?: string;
|