add generic response, types and kinda start register
All checks were successful
Code quality checks / biome (push) Successful in 9s

This commit is contained in:
creations 2025-05-02 10:02:06 -04:00
parent d066cc9fed
commit 1f12212d4e
Signed by: creations
GPG key ID: 8F553AA4320FC711
4 changed files with 103 additions and 1 deletions

6
types/http.d.ts vendored Normal file
View file

@ -0,0 +1,6 @@
interface GenericJsonResponseOptions {
headers?: Record<string, string>;
message?: string;
error?: string;
[key: string]: unknown;
}