refactor: move tableTypes to `src/components/Table/types.d.ts`

This commit is contained in:
fernandomg 2020-07-17 11:08:24 -03:00
parent 1064e3deb8
commit 1ccb37e031
4 changed files with 3 additions and 3 deletions

View File

@ -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'

View File

@ -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'

View File

@ -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'