| 25 | } |
| 26 | |
| 27 | export interface ComponentSpec<P, S> extends Mixin<P, S> { |
| 28 | [propertyName: string]: any |
| 29 | render (props?, context?): any |
| 30 | } |
| 31 | |
| 32 | export interface ClassicComponent<P, S> extends Component<P, S> { |
| 33 | replaceState (nextState: S, callback?: () => any): void |
nothing calls this directly
no outgoing calls
no test coverage detected