├── .flowconfig ├── .gitignore ├── .npmignore ├── .styleci.yml ├── .travis.yml ├── LICENSE ├── README.md ├── index.js ├── index.js.flow ├── package.json ├── tests ├── fixtures │ ├── InvalidFunctionalComponent.js │ ├── TestClassComponent.js │ ├── TestFunctionalComponent.js │ ├── ValidClassComponent.js │ ├── ValidFunctionalComponent.js │ ├── injectFooFactoryClassComponent.js │ ├── injectFooFactoryFunctionalComponent.js │ ├── injectFooHocClassComponent.js │ └── injectFooHocFunctionalComponent.js └── index.js └── yarn.lock /.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digiaonline/react-flow-types/HEAD/.flowconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules 2 | /xeno 3 | *.log -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | /node_modules 2 | /xeno 3 | /tests 4 | *.log -------------------------------------------------------------------------------- /.styleci.yml: -------------------------------------------------------------------------------- 1 | preset: psr2 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digiaonline/react-flow-types/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digiaonline/react-flow-types/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digiaonline/react-flow-types/HEAD/README.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /index.js.flow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digiaonline/react-flow-types/HEAD/index.js.flow -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digiaonline/react-flow-types/HEAD/package.json -------------------------------------------------------------------------------- /tests/fixtures/InvalidFunctionalComponent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digiaonline/react-flow-types/HEAD/tests/fixtures/InvalidFunctionalComponent.js -------------------------------------------------------------------------------- /tests/fixtures/TestClassComponent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digiaonline/react-flow-types/HEAD/tests/fixtures/TestClassComponent.js -------------------------------------------------------------------------------- /tests/fixtures/TestFunctionalComponent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digiaonline/react-flow-types/HEAD/tests/fixtures/TestFunctionalComponent.js -------------------------------------------------------------------------------- /tests/fixtures/ValidClassComponent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digiaonline/react-flow-types/HEAD/tests/fixtures/ValidClassComponent.js -------------------------------------------------------------------------------- /tests/fixtures/ValidFunctionalComponent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digiaonline/react-flow-types/HEAD/tests/fixtures/ValidFunctionalComponent.js -------------------------------------------------------------------------------- /tests/fixtures/injectFooFactoryClassComponent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digiaonline/react-flow-types/HEAD/tests/fixtures/injectFooFactoryClassComponent.js -------------------------------------------------------------------------------- /tests/fixtures/injectFooFactoryFunctionalComponent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digiaonline/react-flow-types/HEAD/tests/fixtures/injectFooFactoryFunctionalComponent.js -------------------------------------------------------------------------------- /tests/fixtures/injectFooHocClassComponent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digiaonline/react-flow-types/HEAD/tests/fixtures/injectFooHocClassComponent.js -------------------------------------------------------------------------------- /tests/fixtures/injectFooHocFunctionalComponent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digiaonline/react-flow-types/HEAD/tests/fixtures/injectFooHocFunctionalComponent.js -------------------------------------------------------------------------------- /tests/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digiaonline/react-flow-types/HEAD/tests/index.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digiaonline/react-flow-types/HEAD/yarn.lock --------------------------------------------------------------------------------