Skip to content

Commit

Permalink
Merge pull request #810 from duffelhq/relative-imports-for-types
Browse files Browse the repository at this point in the history
fix: consistently use relative imports for types
  • Loading branch information
andrejak authored Oct 13, 2023
2 parents c71d41d + 09e4f90 commit a95cf39
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { OrderSlice } from 'types'
import { OrderSlice } from '../../types'

export type AirlineInitiatedChangeActionTaken =
| 'accepted'
Expand Down
2 changes: 1 addition & 1 deletion src/booking/OfferRequests/OfferRequests.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { Client } from '../../Client'
import { CreateOfferRequest, OfferRequest } from './OfferRequestsTypes'
import { mockCreateOfferRequest, mockOfferRequest } from './mockOfferRequest'
import { OfferRequests } from './OfferRequests'
import { OfferPrivateFare } from 'types'
import { OfferPrivateFare } from '../../types'

describe('OfferRequests', () => {
afterEach(() => {
Expand Down
2 changes: 1 addition & 1 deletion src/notifications/Webhooks/WebhooksType.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { PaginationMeta } from 'types'
import { PaginationMeta } from '../../types'

export interface Webhooks {
/**
Expand Down

0 comments on commit a95cf39

Please sign in to comment.