Skip to content

Commit

Permalink
feat!: removes exports that dont need to be exposed
Browse files Browse the repository at this point in the history
  • Loading branch information
ctran88 committed Jan 2, 2025
1 parent e61cb96 commit b16e3fc
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/classes/Auth/types.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { MagicLinkChannel, MagicLinkType } from '../../generated';

export { MagicLinkType, MagicLink, CreateMagicLinkRequest, MagicLinkChannel } from '../../generated';
export { MagicLinkType, MagicLink, MagicLinkChannel } from '../../generated';

type MagicLinkArgsBase = {
type: MagicLinkType;
Expand Down
3 changes: 2 additions & 1 deletion src/classes/PassageBase/PassageBase.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import { PassageError, ResponseError } from '../PassageError';
import { ResponseError } from '../../generated';
import { PassageError } from '../PassageError';
import { PassageInstanceConfig } from './types';

/**
Expand Down
1 change: 0 additions & 1 deletion src/classes/PassageError/index.ts
Original file line number Diff line number Diff line change
@@ -1,2 +1 @@
export * from './PassageError';
export * from './types';
1 change: 0 additions & 1 deletion src/classes/PassageError/types.ts

This file was deleted.

0 comments on commit b16e3fc

Please sign in to comment.