Tree: Add utils file

Used for utility types.

Signed-off-by: kingbri <8082010+kingbri1@users.noreply.github.com>
This commit is contained in:
kingbri
2025-04-11 23:24:06 -04:00
parent 9daca36575
commit 504466a3b0

1
types/utils.ts Normal file
View File

@@ -0,0 +1 @@
export type MaybePromise<T> = (() => T) | (() => Promise<T>);