Skip to content

Commit

Permalink
fix: use relative path
Browse files Browse the repository at this point in the history
  • Loading branch information
Tobias Sittenauer committed Aug 13, 2024
1 parent 05a9b7c commit b9d8bce
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions src/types/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ import {
} from 'date-arithmetic'
import { Validator } from 'prop-types'
import * as React from 'react'
import withDragAndDrop from './lib/addons/dragAndDrop'
import { withDragAndDrop } from 'src/types/lib/addons/dragAndDrop'

type Omit<T, K extends keyof T> = Pick<T, Exclude<keyof T, K>>

Expand Down Expand Up @@ -690,4 +690,8 @@ export interface DayProps {
}
export class Day extends React.Component<DayProps> {}

export * from './lib/addons/dragAndDrop'
export * from 'src/types/lib/addons/dragAndDrop'
export { withDragAndDrop }

// Turn off automatic exports
export {}

0 comments on commit b9d8bce

Please sign in to comment.