move alot to constants, fix html
Some checks failed
Code quality checks / biome (push) Failing after 12s

This commit is contained in:
creations 2025-06-14 09:19:55 -04:00
parent 92172479f6
commit 33a602cdd0
Signed by: creations
GPG key ID: 8F553AA4320FC711
26 changed files with 603 additions and 296 deletions

View file

@ -2,6 +2,7 @@ export * from "./base";
export * from "./responses";
export * from "./register";
export * from "./login";
export * from "./logout";
export * from "./verify";
export * from "./update";

View file

@ -0,0 +1,5 @@
import type { BaseResponse } from "../base";
interface LogoutResponse extends BaseResponse {}
export type { LogoutResponse };