This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import { createAction } from 'redux-act'; | |
| import { call, takeLatest } from 'redux-saga/effects'; | |
| import { createStore, applyMiddleware } from 'redux' | |
| import api from './api'; | |
| const action = createAction('action'); | |
| function *doSomething() { | |
| yield call(api); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| cd /usr/lib/slack/resources/app.asar.unpacked/src/static | |
| mv slack-taskbar-highlight.png slack-taskbar-highlight-backup.png | |
| cp slack-taskbar-rest.png slack-taskbar-highlight.png |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| interface Movie { | |
| id: string; | |
| name: string; | |
| } | |
| interface MovieArguments { | |
| id: string | |
| } | |
| interface CallableMovie extends Movie { |
OlderNewer