Skip to content

Commit

Permalink
fix: fix build issue (#175)
Browse files Browse the repository at this point in the history
TypeScript tests should not import `ChangeOptions`, since that property has been removed.
  • Loading branch information
tansongyang authored and Kent C. Dodds committed Sep 5, 2017
1 parent 22a1b3e commit be20364
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion test/basic.test.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import * as React from 'react';
import Downshift, { ChangeOptions, ControllerStateAndHelpers } from '../';
import Downshift, { ControllerStateAndHelpers } from '../';

interface Props {}

Expand Down
2 changes: 1 addition & 1 deletion test/custom.test.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import * as React from 'react';
import Downshift, { ChangeOptions, ControllerStateAndHelpers } from '../';
import Downshift, { ControllerStateAndHelpers } from '../';

interface Props {}

Expand Down

0 comments on commit be20364

Please sign in to comment.