mirror of https://github.com/abpframework/abp
parent
de58b9882c
commit
a2d00356ac
@ -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