| 16 | } |
| 17 | |
| 18 | export interface ComponentClass<P, S> extends Mixin<P, S> { |
| 19 | propTypes?: {} |
| 20 | contextTypes?: {} |
| 21 | childContextTypes?: {} |
| 22 | defaultProps?: P |
| 23 | displayName?: string |
| 24 | new (props?: P, context?: any): Component<P, S> |
| 25 | } |
| 26 | |
| 27 | export interface ComponentSpec<P, S> extends Mixin<P, S> { |
| 28 | [propertyName: string]: any |
nothing calls this directly
no outgoing calls
no test coverage detected