Rebuild dist

This commit is contained in:
Nick Alteen
2024-11-15 11:45:05 -05:00
parent f658b807e4
commit 44843bfdd2
7 changed files with 27263 additions and 27738 deletions

7
dist/wait.d.ts generated vendored Normal file
View File

@@ -0,0 +1,7 @@
/**
* Waits for a number of milliseconds.
*
* @param milliseconds The number of milliseconds to wait.
* @returns Resolves with 'done!' after the wait is over.
*/
export declare function wait(milliseconds: number): Promise<string>;