vs-code server

This commit is contained in:
2025-07-26 14:04:40 -04:00
parent 85c2166eaf
commit 0714b72f46
117 changed files with 50147 additions and 0 deletions

8
node_modules/esptool-js/lib/util.d.ts generated vendored Normal file
View File

@@ -0,0 +1,8 @@
/**
* Pad to the next alignment boundary
* @param {Uint8Array} data Uint8Array data to pad
* @param {number} alignment Alignment boundary to fulfill
* @param {number} padCharacter Character to fill with
* @returns {Uint8Array} Padded UInt8Array image
*/
export declare function padTo(data: Uint8Array, alignment: number, padCharacter?: number): Uint8Array;