Autarch Will Control The Internet

This commit is contained in:
DigiJ
2026-03-13 15:17:15 -07:00
commit 4d3570781e
401 changed files with 484494 additions and 0 deletions

12
src/adb-entry.js Normal file
View File

@@ -0,0 +1,12 @@
// Entry point for ya-webadb (Tango) browser bundle
// Bundles WebUSB-based ADB access into window.YumeAdb
export {
AdbDaemonWebUsbDeviceManager,
AdbDaemonWebUsbDevice,
} from '@yume-chan/adb-daemon-webusb';
export {
Adb,
AdbDaemonTransport,
} from '@yume-chan/adb';

4
src/esptool-entry.js Normal file
View File

@@ -0,0 +1,4 @@
// Entry point for esptool-js browser bundle
// Bundles Web Serial ESP32 flashing into window.EspTool
export { ESPLoader, Transport } from 'esptool-js';

4
src/fastboot-entry.js Normal file
View File

@@ -0,0 +1,4 @@
// Entry point for fastboot.js browser bundle
// Use the .mjs (ESM) build directly to avoid Node.js CJS URL import issue
export { FastbootDevice, setDebugLevel } from 'android-fastboot/dist/fastboot.mjs';