fix types after i moved some
All checks were successful
Code quality checks / biome (push) Successful in 8s

This commit is contained in:
creations 2025-06-10 16:38:44 -04:00
parent a9fea3a418
commit 83b71f62cf
Signed by: creations
GPG key ID: 8F553AA4320FC711
4 changed files with 8 additions and 4 deletions

View file

@ -1,4 +1,5 @@
import type { BaseResponse, UserResponse } from "./base"; import type { BaseResponse } from "../base";
import type { UserResponse } from "./base";
interface LoginRequest { interface LoginRequest {
identifier: string; // Username or email identifier: string; // Username or email

View file

@ -1,4 +1,5 @@
import type { BaseResponse, UserResponse } from "./base"; import type { BaseResponse } from "../base";
import type { UserResponse } from "./base";
interface UserInfoResponse extends BaseResponse { interface UserInfoResponse extends BaseResponse {
user?: UserResponse; user?: UserResponse;

View file

@ -1,4 +1,5 @@
import type { BaseResponse, UserResponse } from "../base"; import type { BaseResponse } from "../../base";
import type { UserResponse } from "../base";
interface UpdateInfoRequest { interface UpdateInfoRequest {
username?: string; username?: string;

View file

@ -1,4 +1,5 @@
import type { BaseResponse, UserResponse } from "../base"; import type { BaseResponse } from "../../base";
import type { UserResponse } from "../base";
interface UpdatePasswordRequest { interface UpdatePasswordRequest {
currentPassword: string; currentPassword: string;