@widergy/web-utils
Version:
Utility GO! Web utils
9 lines (8 loc) • 402 B
TypeScript
export declare function accountChanged(prevAccount: any, newAccount: any): boolean;
export declare function newCurrentAccount(prevProps: any, newProps: any): boolean;
interface AccountUtils {
accountChanged: (prevAccount: any, newAccount: any) => boolean;
newCurrentAccount: (prevProps: any, newProps: any) => boolean;
}
declare const ACCOUNT_UTILS: AccountUtils;
export default ACCOUNT_UTILS;