Merge pull request #17374 from mhanders/react-sortable-hoc-node-type

[react-sortable-hoc] Use HTMLElement instead of React.ReactNode for node type
This commit is contained in:
Nathan Shively-Sanders
2017-06-24 07:12:28 -07:00
committed by GitHub

View File

@@ -12,7 +12,7 @@ declare module 'react-sortable-hoc' {
export type Offset = number | string;
export interface SortStart {
node: React.ReactNode;
node: Element;
index: number;
collection: Offset;
}