TypeScript - nobu0605/accounting-application GitHub Wiki
This type
If you encounter this error, you need to define a type for this
.
'this' implicitly has type 'any' because it does not have a type annotation. TS2683
Event type
https://qiita.com/Takepepe/items/f1ba99a7ca7e66290f24
Object key
https://qiita.com/tktcorporation/items/051bb03bb4d72930d8e9
type State = {
response: any;
loginInput: {
password: string;
email: string;
[key: string]: any;
};
};
REDUX_DEVTOOLS_EXTENSION_COMPOSE type
History type.
https://qiita.com/taneba/items/b50078e1ac9d1971d413