Last active
September 12, 2018 09:37
-
-
Save fxck/84f7bf3d74e8b353a048ac11e331c8af to your computer and use it in GitHub Desktop.
Revisions
-
fxck revised this gist
Sep 12, 2018 . 1 changed file with 2 additions and 2 deletions.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -5,10 +5,10 @@ export enum ActionTypes { export class Add { readonly type = ActionTypes.Add; constructor(public payload: string) { } } export class Remove { readonly type = ActionTypes.Remove; constructor(public payload: string) {} } -
fxck revised this gist
Sep 12, 2018 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -1,4 +1,4 @@ export enum ActionTypes { Add = '[@my/loading] Add', Remove = '[@my/loading] Remove' } -
fxck created this gist
Sep 12, 2018 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,14 @@ enum ActionTypes { Add = '[@my/loading] Add', Remove = '[@my/loading] Remove' } export class Add { readonly type = ActionTypes.Add; constructor(public payload: string); } export class Remove { readonly type = ActionTypes.Remove; constructor(public payload: string); }