fix user type

This commit is contained in:
kakkokari-gtyih 2024-11-03 16:25:15 +09:00
parent 96fe7784c3
commit b328c15bea
2 changed files with 2 additions and 2 deletions

View File

@ -2448,7 +2448,7 @@ type MetaResponse = operations['meta']['responses']['200']['content']['applicati
type MiAuthCheckResponse = { type MiAuthCheckResponse = {
ok: true; ok: true;
token: string; token: string;
user: User; user: UserDetailedNotMe;
} | { } | {
ok: false; ok: false;
}; };

View File

@ -314,7 +314,7 @@ export type SigninWithPasskeyResponse = {
export type MiAuthCheckResponse = { export type MiAuthCheckResponse = {
ok: true; ok: true;
token: string; token: string;
user: User; user: UserDetailedNotMe;
} | { } | {
ok: false; ok: false;
}; };