// Type definitions for react-props-decorators 0.1.0 // Project: https://github.com/popkirby/react-props-decorators // Definitions by: Qubo // Definitions: https://github.com/borisyankov/DefinitelyTyped /// declare module "react-props-decorators" { import * as React from 'react'; export interface ClassDecorator { (target:TFunction): TFunction|void; } var propTypes: (map: React.ValidationMap) => ClassDecorator; var defaultProps: (defaultProps: any) => ClassDecorator; export { propTypes, defaultProps } }