committing for push

This commit is contained in:
Emma Short
2025-04-22 14:21:58 -06:00
parent 597c52eefe
commit 08bba857db
9 changed files with 164 additions and 14 deletions

3
types.ts Normal file
View File

@@ -0,0 +1,3 @@
declare global {
type Tool<T extends unknown[]> = (...args: T) => Promise<void>
}