index.ts 471 B

123456789101112131415
  1. import * as Types from './types'
  2. export type StackGroup = Types.StackGroup
  3. export type StackMetrics = Types.IStackMetrics
  4. export type StackConfig = Types.IStackConfig
  5. import loadable from 'utils/loadable'
  6. import { IStackConfigModalProps } from './StackConfigModal'
  7. export const StackConfigModal = loadable<IStackConfigModalProps>(() => import('./StackConfigModal'), {
  8. fallback: null
  9. })
  10. export { EmptyStack } from './constants'
  11. export { getStackName } from './util'