Merge pull request #7936 from andrewBalekha/master

updated module with ClassicComponentClass
This commit is contained in:
Masahiro Wakame
2016-02-06 23:56:42 +09:00
+1 -6
View File
@@ -75,15 +75,10 @@ declare module NotificationSystem {
ref?: string;
style?: Style | boolean;
}
export interface Component {
(): React.ReactElement<Attributes>;
}
}
declare module 'react-notification-system' {
var component: NotificationSystem.Component;
var component: __React.ClassicComponentClass<NotificationSystem.Attributes>;
export = component;
}