├── .gitignore ├── LICENSE ├── README.md ├── package.json ├── src ├── index.ts ├── reducer.ts └── router-connector.ts ├── tsconfig.json ├── tslint.json └── typings.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeSequence/ngrx-store-router/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeSequence/ngrx-store-router/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeSequence/ngrx-store-router/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeSequence/ngrx-store-router/HEAD/package.json -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeSequence/ngrx-store-router/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/reducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeSequence/ngrx-store-router/HEAD/src/reducer.ts -------------------------------------------------------------------------------- /src/router-connector.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeSequence/ngrx-store-router/HEAD/src/router-connector.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeSequence/ngrx-store-router/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeSequence/ngrx-store-router/HEAD/tslint.json -------------------------------------------------------------------------------- /typings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeSequence/ngrx-store-router/HEAD/typings.json --------------------------------------------------------------------------------