Skip to content

Commit

Permalink
docs: fix import of LinkDefinition (#9143)
Browse files Browse the repository at this point in the history
  • Loading branch information
shahednasser authored Sep 16, 2024
1 parent a2545df commit ab4a422
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -461,7 +461,7 @@ export const createSubscriptionsHighlights = [
```ts title="src/workflows/create-subscription/steps/create-subscription.ts" highlights={createSubscriptionsHighlights} collapsibleLines="1-7" expandMoreLabel="Show Imports"
import { createStep, StepResponse } from "@medusajs/workflows-sdk"
import { Modules } from "@medusajs/utils"
import { LinkDefinition } from "@medusajs/modules-sdk"
import { LinkDefinition } from "@medusajs/types"
import { SubscriptionInterval } from "../../../modules/subscription/types"
import SubscriptionModuleService from "../../../modules/subscription/service"
import { SUBSCRIPTION_MODULE } from "../../../modules/subscription"
Expand Down Expand Up @@ -1491,13 +1491,13 @@ import {
CartWorkflowDTO,
PaymentCollectionDTO,
IOrderModuleService,
LinkDefinition,
} from "@medusajs/types"
import {
Modules,
ModuleRegistrationName,
} from "@medusajs/utils"
import { createOrdersWorkflow } from "@medusajs/core-flows"
import { LinkDefinition } from "@medusajs/modules-sdk"
import { SubscriptionData } from "../../../modules/subscription/types"
import { SUBSCRIPTION_MODULE } from "../../../modules/subscription"

Expand Down

0 comments on commit ab4a422

Please sign in to comment.