Skip to content

Commit

Permalink
chore(wallet): convert types.ts into directory module with index
Browse files Browse the repository at this point in the history
  • Loading branch information
mkazlauskas committed Jun 28, 2022
1 parent 3288649 commit 485728f
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
@@ -1,12 +1,12 @@
import { Asset, Cardano, EpochInfo, NetworkInfo, ProtocolParametersRequiredByWallet } from '@cardano-sdk/core';
import { BalanceTracker, DelegationTracker, TransactionalObservables, TransactionsTracker } from './services';
import { BalanceTracker, DelegationTracker, TransactionalObservables, TransactionsTracker } from '../services';
import { Cip30DataSignature } from '@cardano-sdk/cip30';
import { Cip30SignDataRequest } from './KeyManagement/cip8';
import { GroupedAddress } from './KeyManagement';
import { Cip30SignDataRequest } from '../KeyManagement/cip8';
import { GroupedAddress } from '../KeyManagement';
import { Observable } from 'rxjs';
import { SelectionSkeleton } from '@cardano-sdk/cip2';
import { Shutdown } from '@cardano-sdk/util';
import { TxInternals } from './Transaction';
import { TxInternals } from '../Transaction';

export type InitializeTxProps = {
outputs?: Set<Cardano.TxOut>;
Expand Down
1 change: 1 addition & 0 deletions packages/wallet/src/types/index.ts
@@ -0,0 +1 @@
export * from './ObservableWallet';

0 comments on commit 485728f

Please sign in to comment.