Skip to content

Commit

Permalink
Merge pull request #39 from nick-heard/master
Browse files Browse the repository at this point in the history
fix: type imports now can pull in constants types from constants file
  • Loading branch information
Samsam Ahmadi committed May 1, 2022
2 parents da0188b + c47811c commit d76a7c6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/datePicker/datePicker.type.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { InitialComponents, InitialProps } from "constant";
import { InitialComponents, InitialProps } from "../constant";

export type DatePickerOnChange = (days: string[]) => void;

Expand Down
2 changes: 1 addition & 1 deletion src/rangePicker/rangePicker.type.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { InitialComponents, InitialProps } from "constant";
import { InitialComponents, InitialProps } from "../constant";

export type RangePickerOnChange = (
selectedDays: RangePickerSelectedDays,
Expand Down

0 comments on commit d76a7c6

Please sign in to comment.