Skip to content

Commit

Permalink
pull a67ecfd
Browse files Browse the repository at this point in the history
  • Loading branch information
artursapek committed Apr 2, 2024
1 parent 099a11f commit c98101c
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions wormhole-connect/src/index.ts
Original file line number Diff line number Diff line change
@@ -1,24 +1,27 @@
import WormholeConnect from './WormholeConnect';
export default WormholeConnect;

export { dark, light } from './theme';
import type {
WormholeConnectPartialTheme,
WormholeConnectTheme,
dark,
light,
} from './theme';

import MAINNET from './config/mainnet';
import TESTNET from './config/testnet';

import type { WormholeConnectConfig } from './config/types';
import type { ChainName } from '@wormhole-foundation/wormhole-connect-sdk';
import { CONFIG } from '@wormhole-foundation/wormhole-connect-sdk';

export { CONFIG as SDK_CONFIG, MAINNET, TESTNET };
export default WormholeConnect;

export {
MAINNET,
TESTNET,
WormholeConnectConfig,
ChainName,
dark,
light,
WormholeConnectPartialTheme,
WormholeConnectTheme,
};

0 comments on commit c98101c

Please sign in to comment.