refactor: move tableTypes to `src/components/Table/types.d.ts`
This commit is contained in:
parent
1064e3deb8
commit
1ccb37e031
|
@ -4,7 +4,7 @@ import { List } from 'immutable'
|
|||
import { FIXED, buildOrderFieldFrom } from 'src/components/Table/sorting'
|
||||
import { formatAmount } from 'src/logic/tokens/utils/formatAmount'
|
||||
import { ETH_ADDRESS } from 'src/logic/tokens/utils/tokenHelpers'
|
||||
import { TableColumn } from 'src/routes/safe/components/tableTypes'
|
||||
import { TableColumn } from 'src/components/Table/types'
|
||||
|
||||
export const BALANCE_TABLE_ASSET_ID = 'asset'
|
||||
export const BALANCE_TABLE_BALANCE_ID = 'balance'
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
import { List } from 'immutable'
|
||||
import { TableColumn } from 'src/routes/safe/components/tableTypes'
|
||||
import { TableColumn } from 'src/components/Table/types'
|
||||
import { ModulePair } from 'src/routes/safe/store/models/safe'
|
||||
|
||||
export const MODULES_TABLE_ADDRESS_ID = 'address'
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
import { List } from 'immutable'
|
||||
import { TableColumn } from 'src/routes/safe/components/tableTypes'
|
||||
import { TableColumn } from 'src/components/Table/types'
|
||||
|
||||
export const OWNERS_TABLE_NAME_ID = 'name'
|
||||
export const OWNERS_TABLE_ADDRESS_ID = 'address'
|
||||
|
|
Loading…
Reference in New Issue