Skip to content

Commit

Permalink
Support WalletType enums (#100)
Browse files Browse the repository at this point in the history
Co-authored-by: Justin Herrera <[email protected]>
  • Loading branch information
justinnout and Justin Herrera authored Nov 23, 2022
1 parent eecbdca commit 093cd15
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
3 changes: 1 addition & 2 deletions src/modules/users/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,7 @@ import { BaseModule } from '../base-module';
import { createApiKeyMissingError } from '../../core/sdk-exceptions';
import { post, get } from '../../utils/rest';
import { generateIssuerFromPublicAddress } from '../../utils/issuer';
import { MagicUserMetadata, MagicWallet } from '../../types';
import { WalletType } from '../../types/wallet-types';
import { MagicUserMetadata, MagicWallet, WalletType } from '../../types';

export class UsersModule extends BaseModule {
// --- User logout endpoints
Expand Down
1 change: 1 addition & 0 deletions src/types/index.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
export * from './didt-types';
export * from './exception-types';
export * from './sdk-types';
export * from './wallet-types';

0 comments on commit 093cd15

Please sign in to comment.