mirror of
https://github.com/elyby/accounts-frontend.git
synced 2025-05-31 14:11:58 +05:30
Fix babel warnings about ts types re-export
This commit is contained in:
@@ -1,2 +1,5 @@
|
||||
export { State as AccountsState, Account } from './reducer';
|
||||
import { State, Account as AccountType } from './reducer';
|
||||
|
||||
export { default as AccountSwitcher } from './AccountSwitcher';
|
||||
export type AccountsState = State;
|
||||
export type Account = AccountType;
|
||||
|
@@ -1 +1,3 @@
|
||||
export { State as AuthState } from './reducer';
|
||||
import { State } from './reducer';
|
||||
|
||||
export type AuthState = State;
|
||||
|
@@ -1,2 +1,4 @@
|
||||
import { MfaStep as TMfaStep } from './MfaEnable';
|
||||
|
||||
export { default } from './MultiFactorAuth';
|
||||
export { MfaStep } from './MfaEnable';
|
||||
export type MfaStep = TMfaStep;
|
||||
|
@@ -1 +1,3 @@
|
||||
export { User } from './reducer';
|
||||
import { User as TUser } from './reducer';
|
||||
|
||||
export type User = TUser;
|
||||
|
Reference in New Issue
Block a user