cringe sfx

This commit is contained in:
2026-04-12 22:35:47 +06:00
parent 7b2cfb4b56
commit 92f7bae50d
15 changed files with 700 additions and 597 deletions

4
server/types/utils.ts Normal file
View File

@@ -0,0 +1,4 @@
export type LastArgument<T>
= T extends (...args: [...any[], infer Last]) => any
? Last
: never