File size: 261 Bytes
1e92f2d
 
 
 
 
 
 
1
2
3
4
5
6
7
8
import { AccountState } from './types';

export const getRestoreToken = ( state: { account?: AccountState } ) =>
	state.account?.restoreToken || null;

export const getIsRestoring = ( state: { account?: AccountState } ) =>
	state.account?.isRestoring || false;