mirror of https://github.com/abpframework/abp.git
3 changed files with 24 additions and 5 deletions
@ -1,4 +1,5 @@ |
|||
export * from './config.actions'; |
|||
export * from './loader.actions'; |
|||
export * from './profile.actions'; |
|||
export * from './rest.actions'; |
|||
export * from './session.actions'; |
|||
|
|||
@ -0,0 +1,11 @@ |
|||
import { HttpRequest } from '@angular/common/http'; |
|||
|
|||
export class LoaderStart { |
|||
static readonly type = '[Loader] Start'; |
|||
constructor(public payload: HttpRequest<any>) {} |
|||
} |
|||
|
|||
export class LoaderStop { |
|||
static readonly type = '[Loader] Stop'; |
|||
constructor(public payload: HttpRequest<any>) {} |
|||
} |
|||
Loading…
Reference in new issue