| 10 | import type { IAccountStore, AccountCreateDTO } from './interfaces/entities' |
| 11 | |
| 12 | interface AccountState { |
| 13 | accounts: Account[] |
| 14 | currentAccountId: string | null |
| 15 | initialized: boolean |
| 16 | } |
| 17 | |
| 18 | interface AccountActions { |
| 19 | // IEntityStore 接口方法 |
nothing calls this directly
no outgoing calls
no test coverage detected