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 {
|
interface LoginRequest {
|
||||||
identifier: string; // Username or email
|
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 {
|
interface UserInfoResponse extends BaseResponse {
|
||||||
user?: UserResponse;
|
user?: UserResponse;
|
||||||
|
|
|
@ -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;
|
||||||
|
|
|
@ -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;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue