updated module with ClassicComponentClass

This commit is contained in:
Andrey
2016-02-02 16:22:50 +01:00
parent 8d8d78e3d5
commit 89ce6d4f49

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;
}
}