Skip to content

Commit

Permalink
fix: type imports now can pull in constants types from constants file
Browse files Browse the repository at this point in the history
  • Loading branch information
nick-heard committed Mar 10, 2022
1 parent 415734c commit c47811c
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 c47811c

Please sign in to comment.