fix types after i moved some
All checks were successful
Code quality checks / biome (push) Successful in 8s
All checks were successful
Code quality checks / biome (push) Successful in 8s
This commit is contained in:
parent
a9fea3a418
commit
83b71f62cf
4 changed files with 8 additions and 4 deletions
|
@ -1,4 +1,5 @@
|
|||
import type { BaseResponse, UserResponse } from "./base";
|
||||
import type { BaseResponse } from "../base";
|
||||
import type { UserResponse } from "./base";
|
||||
|
||||
interface LoginRequest {
|
||||
identifier: string; // Username or email
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
import type { BaseResponse, UserResponse } from "./base";
|
||||
import type { BaseResponse } from "../base";
|
||||
import type { UserResponse } from "./base";
|
||||
|
||||
interface UserInfoResponse extends BaseResponse {
|
||||
user?: UserResponse;
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
import type { BaseResponse, UserResponse } from "../base";
|
||||
import type { BaseResponse } from "../../base";
|
||||
import type { UserResponse } from "../base";
|
||||
|
||||
interface UpdateInfoRequest {
|
||||
username?: string;
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
import type { BaseResponse, UserResponse } from "../base";
|
||||
import type { BaseResponse } from "../../base";
|
||||
import type { UserResponse } from "../base";
|
||||
|
||||
interface UpdatePasswordRequest {
|
||||
currentPassword: string;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue