diff --git a/src/types/__tests__/infer-type.ts b/src/types/__tests__/infer-type.ts index a01f711..0cf9370 100644 --- a/src/types/__tests__/infer-type.ts +++ b/src/types/__tests__/infer-type.ts @@ -1,4 +1,3 @@ -import { boolean_type, number_type, string_type } from '../../constants'; import { create_generic_declaration } from '../../declarations/generic-declaration'; import { emit } from '../../emit'; import { create_infer_type, is_infer_type } from '../infer-type'; diff --git a/src/types/index.ts b/src/types/index.ts index 9c9afb4..30f2f9b 100644 --- a/src/types/index.ts +++ b/src/types/index.ts @@ -1,7 +1,9 @@ export * from './array-type'; +export * from './conditional-type'; export * from './constructor-type'; export * from './function-type'; export * from './general-type'; +export * from './infer-type'; export * from './intersection-type'; export * from './keyof-type'; export * from './literal-type';