├── .gitignore ├── LICENSE ├── README.md ├── dist ├── src │ ├── backend │ │ ├── api.d.ts │ │ ├── api.js │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── models │ │ │ ├── model.d.ts │ │ │ └── model.js │ │ ├── sample.d.ts │ │ └── sample.js │ ├── bug.d.ts │ ├── bug.js │ ├── cli.d.ts │ ├── cli.js │ ├── frontend │ │ ├── TestModel.d.ts │ │ ├── TestModel.js │ │ ├── UserState.d.ts │ │ ├── UserState.js │ │ ├── api │ │ │ ├── actions │ │ │ │ ├── actions.d.ts │ │ │ │ └── actions.js │ │ │ ├── common │ │ │ │ ├── actionEnums.d.ts │ │ │ │ └── actionEnums.js │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── reducer.d.ts │ │ │ ├── reducer.js │ │ │ └── reducers │ │ │ │ ├── reducers.d.ts │ │ │ │ └── reducers.js │ │ ├── components │ │ │ ├── GenericComp.d.ts │ │ │ ├── GenericComp.js │ │ │ ├── PureList.d.ts │ │ │ ├── PureList.js │ │ │ ├── ReduxInc.d.ts │ │ │ ├── ReduxInc.js │ │ │ ├── TetrisComponent.d.ts │ │ │ ├── TetrisComponent.js │ │ │ ├── WaspComponent.d.ts │ │ │ ├── WaspComponent.js │ │ │ ├── WaspContextComponent.d.ts │ │ │ ├── WaspContextComponent.js │ │ │ ├── WaspUseContext.d.ts │ │ │ ├── WaspUseContext.js │ │ │ ├── combinedState.d.ts │ │ │ ├── combinedState.js │ │ │ ├── memberArea.d.ts │ │ │ ├── memberArea.js │ │ │ ├── memberAreaContainer.d.ts │ │ │ ├── memberAreaContainer.js │ │ │ ├── todoList.d.ts │ │ │ └── todoList.js │ │ ├── generated │ │ │ ├── TestModel.d.ts │ │ │ ├── TestModel.js │ │ │ ├── UserState.d.ts │ │ │ └── UserState.js │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── main.d.ts │ │ ├── main.js │ │ ├── models │ │ │ ├── IncModel.d.ts │ │ │ ├── IncModel.js │ │ │ ├── SimpleModel.d.ts │ │ │ ├── SimpleModel.js │ │ │ ├── TestModel.d.ts │ │ │ ├── TestModel.js │ │ │ ├── TetrisModel.d.ts │ │ │ ├── TetrisModel.js │ │ │ ├── TodoList.d.ts │ │ │ ├── TodoList.js │ │ │ ├── UIHelper.d.ts │ │ │ ├── UIHelper.js │ │ │ ├── UserState.d.ts │ │ │ ├── UserState.js │ │ │ ├── WaspModel.d.ts │ │ │ ├── WaspModel.js │ │ │ ├── genericModel.d.ts │ │ │ ├── genericModel.js │ │ │ ├── interfaces.d.ts │ │ │ ├── interfaces.js │ │ │ ├── red │ │ │ │ ├── TestModel.d.ts │ │ │ │ ├── TestModel.js │ │ │ │ ├── TodoList.d.ts │ │ │ │ ├── TodoList.js │ │ │ │ ├── UserState.d.ts │ │ │ │ ├── UserState.js │ │ │ │ ├── index.d.ts │ │ │ │ └── index.js │ │ │ ├── reducers │ │ │ │ ├── IncModel.d.ts │ │ │ │ ├── IncModel.js │ │ │ │ ├── SimpleModel.d.ts │ │ │ │ ├── SimpleModel.js │ │ │ │ ├── TestModel.d.ts │ │ │ │ ├── TestModel.js │ │ │ │ ├── TestModelCtx.d.ts │ │ │ │ ├── TestModelCtx.js │ │ │ │ ├── TetrisModel.d.ts │ │ │ │ ├── TetrisModel.js │ │ │ │ ├── TodoList.d.ts │ │ │ │ ├── TodoList.js │ │ │ │ ├── TodoListCtx.d.ts │ │ │ │ ├── TodoListCtx.js │ │ │ │ ├── UIHelperModel.d.ts │ │ │ │ ├── UIHelperModel.js │ │ │ │ ├── UserState.d.ts │ │ │ │ ├── UserState.js │ │ │ │ ├── UserStateCtx.d.ts │ │ │ │ ├── UserStateCtx.js │ │ │ │ ├── WaspModel.d.ts │ │ │ │ ├── WaspModel.js │ │ │ │ ├── genericModel.d.ts │ │ │ │ ├── genericModel.js │ │ │ │ ├── index.d.ts │ │ │ │ └── index.js │ │ │ ├── testModels.d.ts │ │ │ └── testModels.js │ │ ├── ng.d.ts │ │ ├── ng.js │ │ ├── reducers │ │ │ ├── TestModel.d.ts │ │ │ ├── TestModel.js │ │ │ ├── UserState.d.ts │ │ │ ├── UserState.js │ │ │ ├── index.d.ts │ │ │ └── index.js │ │ ├── redux.d.ts │ │ ├── redux.js │ │ ├── state.d.ts │ │ ├── state.js │ │ ├── state2.d.ts │ │ └── state2.js │ ├── index.d.ts │ ├── index.js │ ├── programmer │ │ ├── service.d.ts │ │ └── service.js │ ├── tssimplec.d.ts │ ├── tssimplec.js │ └── utils │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── oldcode.d.ts │ │ └── oldcode.js ├── swagger │ ├── api.json │ ├── sample.json │ └── server2.json └── test │ ├── test_base.d.ts │ └── test_base.js ├── package.json ├── public ├── index.html └── index.js ├── src ├── backend │ └── index.ts ├── cli.ts ├── frontend │ ├── components │ │ ├── GenericComp.tsx │ │ ├── PureList.tsx │ │ ├── ReduxInc.tsx │ │ ├── TetrisComponent.tsx │ │ ├── WaspComponent.tsx │ │ ├── WaspContextComponent.tsx │ │ ├── combinedState.tsx │ │ ├── memberArea.tsx │ │ └── todoList.tsx │ ├── index.ts │ ├── main.tsx │ └── models │ │ ├── IncModel.ts │ │ ├── SimpleModel.ts │ │ ├── TestModel.ts │ │ ├── TetrisModel.ts │ │ ├── TodoList.ts │ │ ├── UIHelper.ts │ │ ├── UserState.ts │ │ ├── WaspModel.ts │ │ ├── genericModel.ts │ │ ├── interfaces.ts │ │ └── reducers │ │ ├── IncModel.tsx │ │ ├── SimpleModel.tsx │ │ ├── TestModel.tsx │ │ ├── TetrisModel.tsx │ │ ├── TodoList.tsx │ │ ├── UIHelperModel.tsx │ │ ├── UserState.tsx │ │ ├── WaspModel.tsx │ │ ├── genericModel.tsx │ │ └── index.ts ├── index.ts ├── tssimplec.ts └── utils │ └── index.ts ├── test └── test_base.ts └── tsconfig.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terotests/ts2redux/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terotests/ts2redux/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terotests/ts2redux/HEAD/README.md -------------------------------------------------------------------------------- /dist/src/backend/api.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terotests/ts2redux/HEAD/dist/src/backend/api.d.ts -------------------------------------------------------------------------------- /dist/src/backend/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terotests/ts2redux/HEAD/dist/src/backend/api.js -------------------------------------------------------------------------------- /dist/src/backend/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /dist/src/backend/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terotests/ts2redux/HEAD/dist/src/backend/index.js -------------------------------------------------------------------------------- /dist/src/backend/models/model.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terotests/ts2redux/HEAD/dist/src/backend/models/model.d.ts -------------------------------------------------------------------------------- /dist/src/backend/models/model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terotests/ts2redux/HEAD/dist/src/backend/models/model.js -------------------------------------------------------------------------------- /dist/src/backend/sample.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terotests/ts2redux/HEAD/dist/src/backend/sample.d.ts -------------------------------------------------------------------------------- /dist/src/backend/sample.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terotests/ts2redux/HEAD/dist/src/backend/sample.js -------------------------------------------------------------------------------- /dist/src/bug.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /dist/src/bug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terotests/ts2redux/HEAD/dist/src/bug.js -------------------------------------------------------------------------------- /dist/src/cli.d.ts: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | export {}; 3 | -------------------------------------------------------------------------------- /dist/src/cli.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terotests/ts2redux/HEAD/dist/src/cli.js -------------------------------------------------------------------------------- /dist/src/frontend/TestModel.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terotests/ts2redux/HEAD/dist/src/frontend/TestModel.d.ts -------------------------------------------------------------------------------- /dist/src/frontend/TestModel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terotests/ts2redux/HEAD/dist/src/frontend/TestModel.js -------------------------------------------------------------------------------- /dist/src/frontend/UserState.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terotests/ts2redux/HEAD/dist/src/frontend/UserState.d.ts -------------------------------------------------------------------------------- /dist/src/frontend/UserState.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terotests/ts2redux/HEAD/dist/src/frontend/UserState.js -------------------------------------------------------------------------------- /dist/src/frontend/api/actions/actions.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terotests/ts2redux/HEAD/dist/src/frontend/api/actions/actions.d.ts -------------------------------------------------------------------------------- /dist/src/frontend/api/actions/actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terotests/ts2redux/HEAD/dist/src/frontend/api/actions/actions.js -------------------------------------------------------------------------------- /dist/src/frontend/api/common/actionEnums.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terotests/ts2redux/HEAD/dist/src/frontend/api/common/actionEnums.d.ts -------------------------------------------------------------------------------- /dist/src/frontend/api/common/actionEnums.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terotests/ts2redux/HEAD/dist/src/frontend/api/common/actionEnums.js -------------------------------------------------------------------------------- /dist/src/frontend/api/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terotests/ts2redux/HEAD/dist/src/frontend/api/index.d.ts -------------------------------------------------------------------------------- /dist/src/frontend/api/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terotests/ts2redux/HEAD/dist/src/frontend/api/index.js -------------------------------------------------------------------------------- /dist/src/frontend/api/reducer.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terotests/ts2redux/HEAD/dist/src/frontend/api/reducer.d.ts -------------------------------------------------------------------------------- /dist/src/frontend/api/reducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terotests/ts2redux/HEAD/dist/src/frontend/api/reducer.js -------------------------------------------------------------------------------- /dist/src/frontend/api/reducers/reducers.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terotests/ts2redux/HEAD/dist/src/frontend/api/reducers/reducers.d.ts -------------------------------------------------------------------------------- /dist/src/frontend/api/reducers/reducers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terotests/ts2redux/HEAD/dist/src/frontend/api/reducers/reducers.js -------------------------------------------------------------------------------- /dist/src/frontend/components/GenericComp.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terotests/ts2redux/HEAD/dist/src/frontend/components/GenericComp.d.ts -------------------------------------------------------------------------------- /dist/src/frontend/components/GenericComp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terotests/ts2redux/HEAD/dist/src/frontend/components/GenericComp.js -------------------------------------------------------------------------------- /dist/src/frontend/components/PureList.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terotests/ts2redux/HEAD/dist/src/frontend/components/PureList.d.ts -------------------------------------------------------------------------------- /dist/src/frontend/components/PureList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terotests/ts2redux/HEAD/dist/src/frontend/components/PureList.js -------------------------------------------------------------------------------- /dist/src/frontend/components/ReduxInc.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terotests/ts2redux/HEAD/dist/src/frontend/components/ReduxInc.d.ts -------------------------------------------------------------------------------- /dist/src/frontend/components/ReduxInc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terotests/ts2redux/HEAD/dist/src/frontend/components/ReduxInc.js -------------------------------------------------------------------------------- /dist/src/frontend/components/TetrisComponent.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terotests/ts2redux/HEAD/dist/src/frontend/components/TetrisComponent.d.ts -------------------------------------------------------------------------------- /dist/src/frontend/components/TetrisComponent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terotests/ts2redux/HEAD/dist/src/frontend/components/TetrisComponent.js -------------------------------------------------------------------------------- /dist/src/frontend/components/WaspComponent.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terotests/ts2redux/HEAD/dist/src/frontend/components/WaspComponent.d.ts -------------------------------------------------------------------------------- /dist/src/frontend/components/WaspComponent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terotests/ts2redux/HEAD/dist/src/frontend/components/WaspComponent.js -------------------------------------------------------------------------------- /dist/src/frontend/components/WaspContextComponent.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terotests/ts2redux/HEAD/dist/src/frontend/components/WaspContextComponent.d.ts -------------------------------------------------------------------------------- /dist/src/frontend/components/WaspContextComponent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terotests/ts2redux/HEAD/dist/src/frontend/components/WaspContextComponent.js -------------------------------------------------------------------------------- /dist/src/frontend/components/WaspUseContext.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terotests/ts2redux/HEAD/dist/src/frontend/components/WaspUseContext.d.ts -------------------------------------------------------------------------------- /dist/src/frontend/components/WaspUseContext.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terotests/ts2redux/HEAD/dist/src/frontend/components/WaspUseContext.js -------------------------------------------------------------------------------- /dist/src/frontend/components/combinedState.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terotests/ts2redux/HEAD/dist/src/frontend/components/combinedState.d.ts -------------------------------------------------------------------------------- /dist/src/frontend/components/combinedState.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terotests/ts2redux/HEAD/dist/src/frontend/components/combinedState.js -------------------------------------------------------------------------------- /dist/src/frontend/components/memberArea.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terotests/ts2redux/HEAD/dist/src/frontend/components/memberArea.d.ts -------------------------------------------------------------------------------- /dist/src/frontend/components/memberArea.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terotests/ts2redux/HEAD/dist/src/frontend/components/memberArea.js -------------------------------------------------------------------------------- /dist/src/frontend/components/memberAreaContainer.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terotests/ts2redux/HEAD/dist/src/frontend/components/memberAreaContainer.d.ts -------------------------------------------------------------------------------- /dist/src/frontend/components/memberAreaContainer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terotests/ts2redux/HEAD/dist/src/frontend/components/memberAreaContainer.js -------------------------------------------------------------------------------- /dist/src/frontend/components/todoList.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terotests/ts2redux/HEAD/dist/src/frontend/components/todoList.d.ts -------------------------------------------------------------------------------- /dist/src/frontend/components/todoList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terotests/ts2redux/HEAD/dist/src/frontend/components/todoList.js -------------------------------------------------------------------------------- /dist/src/frontend/generated/TestModel.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terotests/ts2redux/HEAD/dist/src/frontend/generated/TestModel.d.ts -------------------------------------------------------------------------------- /dist/src/frontend/generated/TestModel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terotests/ts2redux/HEAD/dist/src/frontend/generated/TestModel.js -------------------------------------------------------------------------------- /dist/src/frontend/generated/UserState.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terotests/ts2redux/HEAD/dist/src/frontend/generated/UserState.d.ts -------------------------------------------------------------------------------- /dist/src/frontend/generated/UserState.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terotests/ts2redux/HEAD/dist/src/frontend/generated/UserState.js -------------------------------------------------------------------------------- /dist/src/frontend/index.d.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/src/frontend/index.js: -------------------------------------------------------------------------------- 1 | console.log('frontend sample'); 2 | //# sourceMappingURL=index.js.map -------------------------------------------------------------------------------- /dist/src/frontend/main.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terotests/ts2redux/HEAD/dist/src/frontend/main.d.ts -------------------------------------------------------------------------------- /dist/src/frontend/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terotests/ts2redux/HEAD/dist/src/frontend/main.js -------------------------------------------------------------------------------- /dist/src/frontend/models/IncModel.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terotests/ts2redux/HEAD/dist/src/frontend/models/IncModel.d.ts -------------------------------------------------------------------------------- /dist/src/frontend/models/IncModel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terotests/ts2redux/HEAD/dist/src/frontend/models/IncModel.js -------------------------------------------------------------------------------- /dist/src/frontend/models/SimpleModel.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terotests/ts2redux/HEAD/dist/src/frontend/models/SimpleModel.d.ts -------------------------------------------------------------------------------- /dist/src/frontend/models/SimpleModel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terotests/ts2redux/HEAD/dist/src/frontend/models/SimpleModel.js -------------------------------------------------------------------------------- /dist/src/frontend/models/TestModel.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terotests/ts2redux/HEAD/dist/src/frontend/models/TestModel.d.ts -------------------------------------------------------------------------------- /dist/src/frontend/models/TestModel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terotests/ts2redux/HEAD/dist/src/frontend/models/TestModel.js -------------------------------------------------------------------------------- /dist/src/frontend/models/TetrisModel.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terotests/ts2redux/HEAD/dist/src/frontend/models/TetrisModel.d.ts -------------------------------------------------------------------------------- /dist/src/frontend/models/TetrisModel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terotests/ts2redux/HEAD/dist/src/frontend/models/TetrisModel.js -------------------------------------------------------------------------------- /dist/src/frontend/models/TodoList.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terotests/ts2redux/HEAD/dist/src/frontend/models/TodoList.d.ts -------------------------------------------------------------------------------- /dist/src/frontend/models/TodoList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terotests/ts2redux/HEAD/dist/src/frontend/models/TodoList.js -------------------------------------------------------------------------------- /dist/src/frontend/models/UIHelper.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terotests/ts2redux/HEAD/dist/src/frontend/models/UIHelper.d.ts -------------------------------------------------------------------------------- /dist/src/frontend/models/UIHelper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terotests/ts2redux/HEAD/dist/src/frontend/models/UIHelper.js -------------------------------------------------------------------------------- /dist/src/frontend/models/UserState.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terotests/ts2redux/HEAD/dist/src/frontend/models/UserState.d.ts -------------------------------------------------------------------------------- /dist/src/frontend/models/UserState.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terotests/ts2redux/HEAD/dist/src/frontend/models/UserState.js -------------------------------------------------------------------------------- /dist/src/frontend/models/WaspModel.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terotests/ts2redux/HEAD/dist/src/frontend/models/WaspModel.d.ts -------------------------------------------------------------------------------- /dist/src/frontend/models/WaspModel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terotests/ts2redux/HEAD/dist/src/frontend/models/WaspModel.js -------------------------------------------------------------------------------- /dist/src/frontend/models/genericModel.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terotests/ts2redux/HEAD/dist/src/frontend/models/genericModel.d.ts -------------------------------------------------------------------------------- /dist/src/frontend/models/genericModel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terotests/ts2redux/HEAD/dist/src/frontend/models/genericModel.js -------------------------------------------------------------------------------- /dist/src/frontend/models/interfaces.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terotests/ts2redux/HEAD/dist/src/frontend/models/interfaces.d.ts -------------------------------------------------------------------------------- /dist/src/frontend/models/interfaces.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terotests/ts2redux/HEAD/dist/src/frontend/models/interfaces.js -------------------------------------------------------------------------------- /dist/src/frontend/models/red/TestModel.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terotests/ts2redux/HEAD/dist/src/frontend/models/red/TestModel.d.ts -------------------------------------------------------------------------------- /dist/src/frontend/models/red/TestModel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terotests/ts2redux/HEAD/dist/src/frontend/models/red/TestModel.js -------------------------------------------------------------------------------- /dist/src/frontend/models/red/TodoList.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terotests/ts2redux/HEAD/dist/src/frontend/models/red/TodoList.d.ts -------------------------------------------------------------------------------- /dist/src/frontend/models/red/TodoList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terotests/ts2redux/HEAD/dist/src/frontend/models/red/TodoList.js -------------------------------------------------------------------------------- /dist/src/frontend/models/red/UserState.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terotests/ts2redux/HEAD/dist/src/frontend/models/red/UserState.d.ts -------------------------------------------------------------------------------- /dist/src/frontend/models/red/UserState.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terotests/ts2redux/HEAD/dist/src/frontend/models/red/UserState.js -------------------------------------------------------------------------------- /dist/src/frontend/models/red/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terotests/ts2redux/HEAD/dist/src/frontend/models/red/index.d.ts -------------------------------------------------------------------------------- /dist/src/frontend/models/red/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terotests/ts2redux/HEAD/dist/src/frontend/models/red/index.js -------------------------------------------------------------------------------- /dist/src/frontend/models/reducers/IncModel.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terotests/ts2redux/HEAD/dist/src/frontend/models/reducers/IncModel.d.ts -------------------------------------------------------------------------------- /dist/src/frontend/models/reducers/IncModel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terotests/ts2redux/HEAD/dist/src/frontend/models/reducers/IncModel.js -------------------------------------------------------------------------------- /dist/src/frontend/models/reducers/SimpleModel.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terotests/ts2redux/HEAD/dist/src/frontend/models/reducers/SimpleModel.d.ts -------------------------------------------------------------------------------- /dist/src/frontend/models/reducers/SimpleModel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terotests/ts2redux/HEAD/dist/src/frontend/models/reducers/SimpleModel.js -------------------------------------------------------------------------------- /dist/src/frontend/models/reducers/TestModel.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terotests/ts2redux/HEAD/dist/src/frontend/models/reducers/TestModel.d.ts -------------------------------------------------------------------------------- /dist/src/frontend/models/reducers/TestModel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terotests/ts2redux/HEAD/dist/src/frontend/models/reducers/TestModel.js -------------------------------------------------------------------------------- /dist/src/frontend/models/reducers/TestModelCtx.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terotests/ts2redux/HEAD/dist/src/frontend/models/reducers/TestModelCtx.d.ts -------------------------------------------------------------------------------- /dist/src/frontend/models/reducers/TestModelCtx.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terotests/ts2redux/HEAD/dist/src/frontend/models/reducers/TestModelCtx.js -------------------------------------------------------------------------------- /dist/src/frontend/models/reducers/TetrisModel.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terotests/ts2redux/HEAD/dist/src/frontend/models/reducers/TetrisModel.d.ts -------------------------------------------------------------------------------- /dist/src/frontend/models/reducers/TetrisModel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terotests/ts2redux/HEAD/dist/src/frontend/models/reducers/TetrisModel.js -------------------------------------------------------------------------------- /dist/src/frontend/models/reducers/TodoList.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terotests/ts2redux/HEAD/dist/src/frontend/models/reducers/TodoList.d.ts -------------------------------------------------------------------------------- /dist/src/frontend/models/reducers/TodoList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terotests/ts2redux/HEAD/dist/src/frontend/models/reducers/TodoList.js -------------------------------------------------------------------------------- /dist/src/frontend/models/reducers/TodoListCtx.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terotests/ts2redux/HEAD/dist/src/frontend/models/reducers/TodoListCtx.d.ts -------------------------------------------------------------------------------- /dist/src/frontend/models/reducers/TodoListCtx.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terotests/ts2redux/HEAD/dist/src/frontend/models/reducers/TodoListCtx.js -------------------------------------------------------------------------------- /dist/src/frontend/models/reducers/UIHelperModel.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terotests/ts2redux/HEAD/dist/src/frontend/models/reducers/UIHelperModel.d.ts -------------------------------------------------------------------------------- /dist/src/frontend/models/reducers/UIHelperModel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terotests/ts2redux/HEAD/dist/src/frontend/models/reducers/UIHelperModel.js -------------------------------------------------------------------------------- /dist/src/frontend/models/reducers/UserState.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terotests/ts2redux/HEAD/dist/src/frontend/models/reducers/UserState.d.ts -------------------------------------------------------------------------------- /dist/src/frontend/models/reducers/UserState.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terotests/ts2redux/HEAD/dist/src/frontend/models/reducers/UserState.js -------------------------------------------------------------------------------- /dist/src/frontend/models/reducers/UserStateCtx.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terotests/ts2redux/HEAD/dist/src/frontend/models/reducers/UserStateCtx.d.ts -------------------------------------------------------------------------------- /dist/src/frontend/models/reducers/UserStateCtx.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terotests/ts2redux/HEAD/dist/src/frontend/models/reducers/UserStateCtx.js -------------------------------------------------------------------------------- /dist/src/frontend/models/reducers/WaspModel.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terotests/ts2redux/HEAD/dist/src/frontend/models/reducers/WaspModel.d.ts -------------------------------------------------------------------------------- /dist/src/frontend/models/reducers/WaspModel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terotests/ts2redux/HEAD/dist/src/frontend/models/reducers/WaspModel.js -------------------------------------------------------------------------------- /dist/src/frontend/models/reducers/genericModel.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terotests/ts2redux/HEAD/dist/src/frontend/models/reducers/genericModel.d.ts -------------------------------------------------------------------------------- /dist/src/frontend/models/reducers/genericModel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terotests/ts2redux/HEAD/dist/src/frontend/models/reducers/genericModel.js -------------------------------------------------------------------------------- /dist/src/frontend/models/reducers/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terotests/ts2redux/HEAD/dist/src/frontend/models/reducers/index.d.ts -------------------------------------------------------------------------------- /dist/src/frontend/models/reducers/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terotests/ts2redux/HEAD/dist/src/frontend/models/reducers/index.js -------------------------------------------------------------------------------- /dist/src/frontend/models/testModels.d.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/src/frontend/models/testModels.js: -------------------------------------------------------------------------------- 1 | //# sourceMappingURL=testModels.js.map -------------------------------------------------------------------------------- /dist/src/frontend/ng.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terotests/ts2redux/HEAD/dist/src/frontend/ng.d.ts -------------------------------------------------------------------------------- /dist/src/frontend/ng.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terotests/ts2redux/HEAD/dist/src/frontend/ng.js -------------------------------------------------------------------------------- /dist/src/frontend/reducers/TestModel.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terotests/ts2redux/HEAD/dist/src/frontend/reducers/TestModel.d.ts -------------------------------------------------------------------------------- /dist/src/frontend/reducers/TestModel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terotests/ts2redux/HEAD/dist/src/frontend/reducers/TestModel.js -------------------------------------------------------------------------------- /dist/src/frontend/reducers/UserState.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terotests/ts2redux/HEAD/dist/src/frontend/reducers/UserState.d.ts -------------------------------------------------------------------------------- /dist/src/frontend/reducers/UserState.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terotests/ts2redux/HEAD/dist/src/frontend/reducers/UserState.js -------------------------------------------------------------------------------- /dist/src/frontend/reducers/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terotests/ts2redux/HEAD/dist/src/frontend/reducers/index.d.ts -------------------------------------------------------------------------------- /dist/src/frontend/reducers/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terotests/ts2redux/HEAD/dist/src/frontend/reducers/index.js -------------------------------------------------------------------------------- /dist/src/frontend/redux.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terotests/ts2redux/HEAD/dist/src/frontend/redux.d.ts -------------------------------------------------------------------------------- /dist/src/frontend/redux.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terotests/ts2redux/HEAD/dist/src/frontend/redux.js -------------------------------------------------------------------------------- /dist/src/frontend/state.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terotests/ts2redux/HEAD/dist/src/frontend/state.d.ts -------------------------------------------------------------------------------- /dist/src/frontend/state.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terotests/ts2redux/HEAD/dist/src/frontend/state.js -------------------------------------------------------------------------------- /dist/src/frontend/state2.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terotests/ts2redux/HEAD/dist/src/frontend/state2.d.ts -------------------------------------------------------------------------------- /dist/src/frontend/state2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terotests/ts2redux/HEAD/dist/src/frontend/state2.js -------------------------------------------------------------------------------- /dist/src/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terotests/ts2redux/HEAD/dist/src/index.d.ts -------------------------------------------------------------------------------- /dist/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terotests/ts2redux/HEAD/dist/src/index.js -------------------------------------------------------------------------------- /dist/src/programmer/service.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terotests/ts2redux/HEAD/dist/src/programmer/service.d.ts -------------------------------------------------------------------------------- /dist/src/programmer/service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terotests/ts2redux/HEAD/dist/src/programmer/service.js -------------------------------------------------------------------------------- /dist/src/tssimplec.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /dist/src/tssimplec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terotests/ts2redux/HEAD/dist/src/tssimplec.js -------------------------------------------------------------------------------- /dist/src/utils/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terotests/ts2redux/HEAD/dist/src/utils/index.d.ts -------------------------------------------------------------------------------- /dist/src/utils/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terotests/ts2redux/HEAD/dist/src/utils/index.js -------------------------------------------------------------------------------- /dist/src/utils/oldcode.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terotests/ts2redux/HEAD/dist/src/utils/oldcode.d.ts -------------------------------------------------------------------------------- /dist/src/utils/oldcode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terotests/ts2redux/HEAD/dist/src/utils/oldcode.js -------------------------------------------------------------------------------- /dist/swagger/api.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terotests/ts2redux/HEAD/dist/swagger/api.json -------------------------------------------------------------------------------- /dist/swagger/sample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terotests/ts2redux/HEAD/dist/swagger/sample.json -------------------------------------------------------------------------------- /dist/swagger/server2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terotests/ts2redux/HEAD/dist/swagger/server2.json -------------------------------------------------------------------------------- /dist/test/test_base.d.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/test/test_base.js: -------------------------------------------------------------------------------- 1 | describe('no tests at the moment', function () { 2 | }); 3 | //# sourceMappingURL=test_base.js.map -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terotests/ts2redux/HEAD/package.json -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terotests/ts2redux/HEAD/public/index.html -------------------------------------------------------------------------------- /public/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terotests/ts2redux/HEAD/public/index.js -------------------------------------------------------------------------------- /src/backend/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terotests/ts2redux/HEAD/src/backend/index.ts -------------------------------------------------------------------------------- /src/cli.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terotests/ts2redux/HEAD/src/cli.ts -------------------------------------------------------------------------------- /src/frontend/components/GenericComp.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terotests/ts2redux/HEAD/src/frontend/components/GenericComp.tsx -------------------------------------------------------------------------------- /src/frontend/components/PureList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terotests/ts2redux/HEAD/src/frontend/components/PureList.tsx -------------------------------------------------------------------------------- /src/frontend/components/ReduxInc.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terotests/ts2redux/HEAD/src/frontend/components/ReduxInc.tsx -------------------------------------------------------------------------------- /src/frontend/components/TetrisComponent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terotests/ts2redux/HEAD/src/frontend/components/TetrisComponent.tsx -------------------------------------------------------------------------------- /src/frontend/components/WaspComponent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terotests/ts2redux/HEAD/src/frontend/components/WaspComponent.tsx -------------------------------------------------------------------------------- /src/frontend/components/WaspContextComponent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terotests/ts2redux/HEAD/src/frontend/components/WaspContextComponent.tsx -------------------------------------------------------------------------------- /src/frontend/components/combinedState.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terotests/ts2redux/HEAD/src/frontend/components/combinedState.tsx -------------------------------------------------------------------------------- /src/frontend/components/memberArea.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terotests/ts2redux/HEAD/src/frontend/components/memberArea.tsx -------------------------------------------------------------------------------- /src/frontend/components/todoList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terotests/ts2redux/HEAD/src/frontend/components/todoList.tsx -------------------------------------------------------------------------------- /src/frontend/index.ts: -------------------------------------------------------------------------------- 1 | 2 | console.log('frontend sample') -------------------------------------------------------------------------------- /src/frontend/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terotests/ts2redux/HEAD/src/frontend/main.tsx -------------------------------------------------------------------------------- /src/frontend/models/IncModel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terotests/ts2redux/HEAD/src/frontend/models/IncModel.ts -------------------------------------------------------------------------------- /src/frontend/models/SimpleModel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terotests/ts2redux/HEAD/src/frontend/models/SimpleModel.ts -------------------------------------------------------------------------------- /src/frontend/models/TestModel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terotests/ts2redux/HEAD/src/frontend/models/TestModel.ts -------------------------------------------------------------------------------- /src/frontend/models/TetrisModel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terotests/ts2redux/HEAD/src/frontend/models/TetrisModel.ts -------------------------------------------------------------------------------- /src/frontend/models/TodoList.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terotests/ts2redux/HEAD/src/frontend/models/TodoList.ts -------------------------------------------------------------------------------- /src/frontend/models/UIHelper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terotests/ts2redux/HEAD/src/frontend/models/UIHelper.ts -------------------------------------------------------------------------------- /src/frontend/models/UserState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terotests/ts2redux/HEAD/src/frontend/models/UserState.ts -------------------------------------------------------------------------------- /src/frontend/models/WaspModel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terotests/ts2redux/HEAD/src/frontend/models/WaspModel.ts -------------------------------------------------------------------------------- /src/frontend/models/genericModel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terotests/ts2redux/HEAD/src/frontend/models/genericModel.ts -------------------------------------------------------------------------------- /src/frontend/models/interfaces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terotests/ts2redux/HEAD/src/frontend/models/interfaces.ts -------------------------------------------------------------------------------- /src/frontend/models/reducers/IncModel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terotests/ts2redux/HEAD/src/frontend/models/reducers/IncModel.tsx -------------------------------------------------------------------------------- /src/frontend/models/reducers/SimpleModel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terotests/ts2redux/HEAD/src/frontend/models/reducers/SimpleModel.tsx -------------------------------------------------------------------------------- /src/frontend/models/reducers/TestModel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terotests/ts2redux/HEAD/src/frontend/models/reducers/TestModel.tsx -------------------------------------------------------------------------------- /src/frontend/models/reducers/TetrisModel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terotests/ts2redux/HEAD/src/frontend/models/reducers/TetrisModel.tsx -------------------------------------------------------------------------------- /src/frontend/models/reducers/TodoList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terotests/ts2redux/HEAD/src/frontend/models/reducers/TodoList.tsx -------------------------------------------------------------------------------- /src/frontend/models/reducers/UIHelperModel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terotests/ts2redux/HEAD/src/frontend/models/reducers/UIHelperModel.tsx -------------------------------------------------------------------------------- /src/frontend/models/reducers/UserState.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terotests/ts2redux/HEAD/src/frontend/models/reducers/UserState.tsx -------------------------------------------------------------------------------- /src/frontend/models/reducers/WaspModel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terotests/ts2redux/HEAD/src/frontend/models/reducers/WaspModel.tsx -------------------------------------------------------------------------------- /src/frontend/models/reducers/genericModel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terotests/ts2redux/HEAD/src/frontend/models/reducers/genericModel.tsx -------------------------------------------------------------------------------- /src/frontend/models/reducers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terotests/ts2redux/HEAD/src/frontend/models/reducers/index.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terotests/ts2redux/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/tssimplec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terotests/ts2redux/HEAD/src/tssimplec.ts -------------------------------------------------------------------------------- /src/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terotests/ts2redux/HEAD/src/utils/index.ts -------------------------------------------------------------------------------- /test/test_base.ts: -------------------------------------------------------------------------------- 1 | 2 | describe('no tests at the moment', () => { 3 | }); 4 | 5 | -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terotests/ts2redux/HEAD/tsconfig.json --------------------------------------------------------------------------------