AW-432 converted event to action
All checks were successful
FarmMaps.Develop/FarmMapsLib/develop This commit looks good

This commit is contained in:
Willem Dantuma
2019-08-16 09:40:00 +02:00
parent c5d7550750
commit 4671ce08d3
2 changed files with 13 additions and 3 deletions

View File

@@ -41,6 +41,8 @@ export const VIEWITEM = "[AppCommon] ViewItem";
export const FAIL = '[AppCommon] Fail';
export const UPLOADEDFILECLICK = '[AppCommon] UploadedFileClick';
export class InitUser implements Action {
readonly type = INITUSER;
@@ -191,6 +193,12 @@ export class ShowNavBar implements Action {
constructor() { }
}
export class UploadedFileClick implements Action {
readonly type = UPLOADEDFILECLICK;
constructor(public itemCode:string) { }
}
export type Actions = OpenModal
| InitRoot
| InitRootSuccess