(props)
| 19 | height: number; |
| 20 | getPixels: () => any; |
| 21 | constructor(props) { |
| 22 | invariant(props.getPixels, "FakeTexture: getPixels is required"); |
| 23 | Object.assign(this, props); |
| 24 | } |
| 25 | } |
| 26 | |
| 27 | export class FakeTextureElement extends React.Component { |
nothing calls this directly
no outgoing calls
no test coverage detected