id 追加

This commit is contained in:
rca 2024-07-19 03:37:37 +09:00
parent 084be1bf94
commit 4d22ddaf65

View File

@ -1,4 +1,5 @@
export interface AccountStateInterface {
id: string;
username: string;
token: string;
isLoggedIn: boolean;
@ -6,6 +7,7 @@ export interface AccountStateInterface {
function state(): AccountStateInterface {
return {
id: '',
username: '',
token: '',
isLoggedIn: false,