Skip to content

Commit

Permalink
FIX (types)[#68]: wrong import and portal type in types.d.ts closes #68
Browse files Browse the repository at this point in the history
… (#69)
  • Loading branch information
sanusart authored Feb 12, 2020
1 parent 9b93c6e commit 3dfdb2d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions types.d.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { React, SyntheticEvent, KeyboardEvent } from 'react';
import React, { SyntheticEvent, KeyboardEvent } from 'react';

export interface IState {
dropdown: boolean;
Expand Down Expand Up @@ -82,7 +82,7 @@ export interface ISelectProps<T extends object = object> {
dropdownPosition?: string;
dropdownHeight?: string;
autoFocus?: boolean;
portal?: string;
portal?: HTMLElement;
create?: boolean;
direction?: 'ltr' | 'rtl';
name?: string;
Expand Down

0 comments on commit 3dfdb2d

Please sign in to comment.