UNPKG

react-native-template-allmax

Version:

React native template with navigation, redux, redux-saga, eslit, flow, reactotron

76 lines (64 loc) 2.33 kB
// flow-typed signature: 9b9f4128694a7f68659d945b81fb78ff // flow-typed version: 46dfe79a54/react-test-renderer_v16.x.x/flow_>=v0.47.x // Type definitions for react-test-renderer 16.x.x // Ported from: https://github.com/DefinitelyTyped/DefinitelyTyped/blob/master/types/react-test-renderer type ReactComponentInstance = React$Component<any>; type ReactTestRendererJSON = { type: string, props: { [propName: string]: any }, children: null | ReactTestRendererJSON[] }; type ReactTestRendererTree = ReactTestRendererJSON & { nodeType: "component" | "host", instance: ?ReactComponentInstance, rendered: null | ReactTestRendererTree }; type ReactTestInstance = { instance: ?ReactComponentInstance, type: string, props: { [propName: string]: any }, parent: null | ReactTestInstance, children: Array<ReactTestInstance | string>, find(predicate: (node: ReactTestInstance) => boolean): ReactTestInstance, findByType(type: React$ElementType): ReactTestInstance, findByProps(props: { [propName: string]: any }): ReactTestInstance, findAll( predicate: (node: ReactTestInstance) => boolean, options?: { deep: boolean } ): ReactTestInstance[], findAllByType( type: React$ElementType, options?: { deep: boolean } ): ReactTestInstance[], findAllByProps( props: { [propName: string]: any }, options?: { deep: boolean } ): ReactTestInstance[] }; type TestRendererOptions = { createNodeMock(element: React$Element<any>): any }; declare module "react-test-renderer" { declare export type ReactTestRenderer = { toJSON(): null | ReactTestRendererJSON, toTree(): null | ReactTestRendererTree, unmount(nextElement?: React$Element<any>): void, update(nextElement: React$Element<any>): void, getInstance(): ?ReactComponentInstance, root: ReactTestInstance }; declare function create( nextElement: React$Element<any>, options?: TestRendererOptions ): ReactTestRenderer; } declare module "react-test-renderer/shallow" { declare export default class ShallowRenderer { static createRenderer(): ShallowRenderer; getMountedInstance(): ReactTestInstance; getRenderOutput<E: React$Element<any>>(): E; getRenderOutput(): React$Element<any>; render(element: React$Element<any>, context?: any): void; unmount(): void; } }