Aleksey Shestakov
Aleksey Shestakov
Trying to use with react-native-router-flux., but: > Warning: Failed prop type: Required prop `location` was not specified in... > Cannot read property 'replace' of undefined Could you point me where...
Thank you for explanation. Now playing with `react-native-router-flux` to better understand it. Will come back later.
Use inline-source-map in webpack.config.js: `devtool: isDebug ? 'inline-source-map' : false,` launch.json: `"webRoot": "${workspaceRoot}/src"` https://github.com/kriasoft/react-static-boilerplate/issues/225#issuecomment-301387679
Use inline-source-map in webpack.config.js: `devtool: isDebug ? 'inline-source-map' : false,` launch.json: ``` { "type": "chrome", "request": "launch", "name": "Launch Chrome against localhost", "url": "http://localhost:3000", "webRoot": "${workspaceRoot}/src", "userDataDir": "${workspaceRoot}/.vscode/chrome" } ```
@kumarharsh - thank you!
``` const MobileLinkContainer = styled.div({ [`${StyledLink}`]: { padding: "1rem" } }); ``` upd: https://github.com/emotion-js/emotion/issues/501
I did it with "any". Will put it here later.
[tcomb-form-native.d.zip](https://github.com/gcanti/tcomb-form-native/files/343439/tcomb-form-native.d.zip) Here is tcomb-form-native.d.ts It is just cheating TS compiler... ``` import TCombFormNative = TComb; declare namespace TComb { import React = __React; export interface FormComponentClass { Form: React.ComponentClass; }...
I did next: 1. put index.d.ts for my package into \typings\globals 2. made update to \typings\index.d.ts: `/// ` and this helped to avoid TS2656 without using top level export. Is...