Initial commit
Some checks failed
Check Transpiled JavaScript / Check dist/ (push) Successful in 55s
Continuous Integration / TypeScript Tests (push) Successful in 56s
Continuous Integration / GitHub Actions Test (push) Successful in 10s
Lint Codebase / Lint Codebase (push) Failing after 7m55s

This commit is contained in:
2025-01-11 22:39:23 +01:00
commit 3999529881
43 changed files with 38960 additions and 0 deletions

1
dist/index.d.ts generated vendored Normal file
View File

@@ -0,0 +1 @@
export {};

27267
dist/index.js generated vendored Normal file

File diff suppressed because one or more lines are too long

1
dist/index.js.map generated vendored Normal file

File diff suppressed because one or more lines are too long

6
dist/main.d.ts generated vendored Normal file
View File

@@ -0,0 +1,6 @@
/**
* The main function for the action.
*
* @returns Resolves when the action is complete.
*/
export declare function run(): Promise<void>;

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>;