diff --git a/src/modules/date/index.ts b/src/modules/date/index.ts index b076d4f6c94..1bea401cbeb 100644 --- a/src/modules/date/index.ts +++ b/src/modules/date/index.ts @@ -1,6 +1,6 @@ -import type { Faker } from '../..'; import type { DateEntryDefinition } from '../../definitions'; import { FakerError } from '../../errors/faker-error'; +import type { Faker } from '../../faker'; import { toDate } from '../../internal/date'; import { assertLocaleData } from '../../internal/locale-proxy'; import { SimpleModuleBase } from '../../internal/module-base'; diff --git a/src/modules/location/index.ts b/src/modules/location/index.ts index 06e124c0b38..4a604eae46e 100644 --- a/src/modules/location/index.ts +++ b/src/modules/location/index.ts @@ -1,5 +1,5 @@ -import type { Faker } from '../..'; import { FakerError } from '../../errors/faker-error'; +import type { Faker } from '../../faker'; import { SimpleModuleBase } from '../../internal/module-base'; /** diff --git a/src/modules/person/index.ts b/src/modules/person/index.ts index 59325607674..0b905632d1d 100644 --- a/src/modules/person/index.ts +++ b/src/modules/person/index.ts @@ -1,5 +1,5 @@ -import type { Faker } from '../..'; import type { PersonEntryDefinition } from '../../definitions/person'; +import type { Faker } from '../../faker'; import { ModuleBase } from '../../internal/module-base'; /**