Created
May 16, 2017 00:48
-
-
Save beefsack/23fe5fc674f6224b09a4ce54d164d2c5 to your computer and use it in GitHub Desktop.
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
| // The following does not work. | |
| export const FETCH_ACTIVE_GAMES = "brdgme/game/FETCH_ACTIVE_GAMES"; | |
| export interface IFetchActiveGames { | |
| type: FETCH_ACTIVE_GAMES; | |
| } | |
| export const fetchActiveGames = (): IFetchActiveGames => ({ | |
| type: FETCH_ACTIVE_GAMES, | |
| }); | |
| // The following works. | |
| export const FETCH_ACTIVE_GAMES = "brdgme/game/FETCH_ACTIVE_GAMES"; | |
| export interface IFetchActiveGames { | |
| type: "brdgme/game/FETCH_ACTIVE_GAMES"; | |
| } | |
| export const fetchActiveGames = (): IFetchActiveGames => ({ | |
| type: FETCH_ACTIVE_GAMES, | |
| }); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment