@mx-cartographer/experiences 3.1.0-alpha.sms5-await5 → 3.1.0-alpha.sms5-NOawait1

Sign up to get free protection for your applications and to get access to all the features.
@@ -11,7 +11,7 @@ export declare class AccountStore {
11
11
  members: Member[];
12
12
  uiStore: UiStore;
13
13
  constructor(globalStore: GlobalStore);
14
- initialize: (endpoint: string, token: string) => Promise<void>;
14
+ initialize: (endpoint: string, token: string) => void;
15
15
  get cashAccounts(): Account[];
16
16
  get cashBalance(): number;
17
17
  addAccount: (account: Account) => Promise<void>;
@@ -26,7 +26,7 @@ export declare class AccountStore {
26
26
  }) => Promise<any>;
27
27
  mergeAccounts: (accountGuids: string[]) => Promise<void>;
28
28
  sortAccounts: (accounts?: Account[]) => void;
29
- refreshAccounts: () => Promise<void>;
29
+ refreshAccounts: () => void;
30
30
  refreshMembers: () => Promise<void>;
31
31
  removeAccount: (accountGuid: string) => Promise<void>;
32
32
  updateAccount: (account: Account) => Promise<void>;