Skip to content

Commit

Permalink
Merge branch 'typings' into prebuilt
Browse files Browse the repository at this point in the history
  • Loading branch information
iyegoroff committed Feb 2, 2018
2 parents 5b50d12 + b29cd58 commit 7d324d3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/index.d.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import * as React from 'react';

type WrappedComponent = React.ComponentType<{
readonly value?: React.InputHTMLAttributes<WrappedComponent>['value'];
readonly onChange?: React.InputHTMLAttributes<WrappedComponent>['onChange'];
readonly value?: string | number;
readonly onChange?: React.ChangeEventHandler<WrappedComponent>;
}>;

export interface DebounceInputProps extends React.InputHTMLAttributes<DebounceInput> {
Expand Down

0 comments on commit 7d324d3

Please sign in to comment.