Merge commit 'c807ffc3249e07220365bef8dd34511bb1dd0794' into mntm-dev

This commit is contained in:
Willy-JL
2024-10-31 18:05:27 +00:00
9 changed files with 117 additions and 12 deletions

View File

@@ -100,6 +100,7 @@ export declare function println(string: string, delay?: number): void;
* @brief Prints a string by Alt+Numpad method - works only on Windows!
* @param string The string to print
* @param delay How many milliseconds to wait between key presses
* @version Added in JS SDK 0.1
*/
export declare function altPrint(string: string, delay?: number): void;
@@ -108,10 +109,12 @@ export declare function altPrint(string: string, delay?: number): void;
* Presses "Enter" after printing the string
* @param string The string to print
* @param delay How many milliseconds to wait between key presses
* @version Added in JS SDK 0.1
*/
export declare function altPrintln(string: string, delay?: number): void;
/**
* @brief Releases usb, optional, but allows to switch usb profile
* @version Added in JS SDK 0.1
*/
export declare function quit(): void;