axioma-material 1.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +63 -0
- package/fesm2022/axioma-material.mjs +767 -0
- package/fesm2022/axioma-material.mjs.map +1 -0
- package/index.d.ts +5 -0
- package/lib/confirmation-dialog/confirmation-data.d.ts +13 -0
- package/lib/confirmation-dialog/confirmation-dialog.component.d.ts +11 -0
- package/lib/confirmation.service.d.ts +8 -0
- package/lib/detail-actions/detail-actions.component.d.ts +11 -0
- package/lib/email/checkUserExistsFn.d.ts +2 -0
- package/lib/email/email.component.d.ts +25 -0
- package/lib/grid/grid-config.d.ts +29 -0
- package/lib/grid/grid.component.d.ts +54 -0
- package/lib/loading.interceptor.d.ts +2 -0
- package/lib/snack.service.d.ts +8 -0
- package/package.json +25 -0
- package/public-api.d.ts +19 -0
- package/state/crud/crud.actions.d.ts +64 -0
- package/state/crud/crud.effects.d.ts +41 -0
- package/state/crud/crud.module.d.ts +7 -0
- package/state/crud/crud.reducer.d.ts +36 -0
- package/state/crud/crud.selectors.d.ts +21 -0
- package/state/grid/grid-setup.d.ts +6 -0
- package/state/grid/grid.actions.d.ts +57 -0
- package/state/grid/grid.effects.d.ts +44 -0
- package/state/grid/grid.module.d.ts +7 -0
- package/state/grid/grid.reducer.d.ts +20 -0
- package/state/grid/grid.selectors.d.ts +17 -0
- package/state/grid/models.d.ts +41 -0
- package/state/router/router.actions.d.ts +11 -0
- package/state/router/router.effects.d.ts +13 -0
- package/state/router/router.module.d.ts +7 -0
- package/state/router/router.selectors.d.ts +13 -0
- package/state/router/store-route-serializer.d.ts +10 -0
- package/state/shared/shared.actions.d.ts +37 -0
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
export declare const selectParamName: (name: string) => import("@ngrx/store").MemoizedSelector<Record<string, any>, string | undefined, (s1: {
|
|
2
|
+
[key: string]: {
|
|
3
|
+
param?: string;
|
|
4
|
+
all: import("./crud.reducer").NamedItem[];
|
|
5
|
+
value?: any;
|
|
6
|
+
};
|
|
7
|
+
}) => string | undefined>;
|
|
8
|
+
export declare const selectValue: (name: string) => import("@ngrx/store").MemoizedSelector<Record<string, any>, any, (s1: {
|
|
9
|
+
[key: string]: {
|
|
10
|
+
param?: string;
|
|
11
|
+
all: import("./crud.reducer").NamedItem[];
|
|
12
|
+
value?: any;
|
|
13
|
+
};
|
|
14
|
+
}) => any>;
|
|
15
|
+
export declare const selectAll: (name: string) => import("@ngrx/store").MemoizedSelector<Record<string, any>, import("./crud.reducer").NamedItem[] | undefined, (s1: {
|
|
16
|
+
[key: string]: {
|
|
17
|
+
param?: string;
|
|
18
|
+
all: import("./crud.reducer").NamedItem[];
|
|
19
|
+
value?: any;
|
|
20
|
+
};
|
|
21
|
+
}) => import("./crud.reducer").NamedItem[] | undefined>;
|
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
import { GenericDataRequest, GroupFilter } from './models';
|
|
2
|
+
export declare const GridActions: {
|
|
3
|
+
refresh: import("@ngrx/store").ActionCreator<"[Grid] Refresh", () => import("@ngrx/store").Action<"[Grid] Refresh">>;
|
|
4
|
+
load: import("@ngrx/store").ActionCreator<"[Grid] Load", (props: {
|
|
5
|
+
name: string;
|
|
6
|
+
request?: GenericDataRequest;
|
|
7
|
+
}) => {
|
|
8
|
+
name: string;
|
|
9
|
+
request?: GenericDataRequest;
|
|
10
|
+
} & import("@ngrx/store").Action<"[Grid] Load">>;
|
|
11
|
+
loadSuccess: import("@ngrx/store").ActionCreator<"[Grid] Load Success", (props: {
|
|
12
|
+
name: string;
|
|
13
|
+
count?: number;
|
|
14
|
+
data?: any[];
|
|
15
|
+
}) => {
|
|
16
|
+
name: string;
|
|
17
|
+
count?: number;
|
|
18
|
+
data?: any[];
|
|
19
|
+
} & import("@ngrx/store").Action<"[Grid] Load Success">>;
|
|
20
|
+
changePaging: import("@ngrx/store").ActionCreator<"[Grid] Change Paging", (props: {
|
|
21
|
+
pageIndex: number;
|
|
22
|
+
pageSize: number;
|
|
23
|
+
}) => {
|
|
24
|
+
pageIndex: number;
|
|
25
|
+
pageSize: number;
|
|
26
|
+
} & import("@ngrx/store").Action<"[Grid] Change Paging">>;
|
|
27
|
+
changeSort: import("@ngrx/store").ActionCreator<"[Grid] Change Sort", (props: {
|
|
28
|
+
sort: string;
|
|
29
|
+
dir: string;
|
|
30
|
+
}) => {
|
|
31
|
+
sort: string;
|
|
32
|
+
dir: string;
|
|
33
|
+
} & import("@ngrx/store").Action<"[Grid] Change Sort">>;
|
|
34
|
+
changeFilter: import("@ngrx/store").ActionCreator<"[Grid] Change Filter", (props: {
|
|
35
|
+
filter: string;
|
|
36
|
+
}) => {
|
|
37
|
+
filter: string;
|
|
38
|
+
} & import("@ngrx/store").Action<"[Grid] Change Filter">>;
|
|
39
|
+
updateRequest: import("@ngrx/store").ActionCreator<"[Grid] Update Request", (props: {
|
|
40
|
+
request: GenericDataRequest;
|
|
41
|
+
}) => {
|
|
42
|
+
request: GenericDataRequest;
|
|
43
|
+
} & import("@ngrx/store").Action<"[Grid] Update Request">>;
|
|
44
|
+
goTo: import("@ngrx/store").ActionCreator<"[Grid] Go To", (props: {
|
|
45
|
+
url: string;
|
|
46
|
+
filter: GroupFilter;
|
|
47
|
+
}) => {
|
|
48
|
+
url: string;
|
|
49
|
+
filter: GroupFilter;
|
|
50
|
+
} & import("@ngrx/store").Action<"[Grid] Go To">>;
|
|
51
|
+
bulkDelete: import("@ngrx/store").ActionCreator<"[Grid] Bulk Delete", (props: {
|
|
52
|
+
ids: number[] | undefined;
|
|
53
|
+
}) => {
|
|
54
|
+
ids: number[] | undefined;
|
|
55
|
+
} & import("@ngrx/store").Action<"[Grid] Bulk Delete">>;
|
|
56
|
+
bulkDeleteSuccess: import("@ngrx/store").ActionCreator<"[Grid] Bulk Delete Success", () => import("@ngrx/store").Action<"[Grid] Bulk Delete Success">>;
|
|
57
|
+
};
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
export declare class GridEffects {
|
|
3
|
+
private snack;
|
|
4
|
+
private client;
|
|
5
|
+
private store;
|
|
6
|
+
private actions$;
|
|
7
|
+
private confirmation;
|
|
8
|
+
changePaging$: import("rxjs").Observable<{
|
|
9
|
+
request: import("./models").GenericDataRequest;
|
|
10
|
+
} & import("@ngrx/store").Action<"[Grid] Update Request">> & import("@ngrx/effects").CreateEffectMetadata;
|
|
11
|
+
changeSort$: import("rxjs").Observable<{
|
|
12
|
+
request: import("./models").GenericDataRequest;
|
|
13
|
+
} & import("@ngrx/store").Action<"[Grid] Update Request">> & import("@ngrx/effects").CreateEffectMetadata;
|
|
14
|
+
updateRequest$: import("rxjs").Observable<{
|
|
15
|
+
url: string;
|
|
16
|
+
} & import("@ngrx/store").Action<"[Shared] Navigate">> & import("@ngrx/effects").CreateEffectMetadata;
|
|
17
|
+
loadFromUrl$: import("rxjs").Observable<import("@ngrx/store").Action<"[Grid] Refresh">> & import("@ngrx/effects").CreateEffectMetadata;
|
|
18
|
+
changeFilter$: import("rxjs").Observable<{
|
|
19
|
+
request: import("./models").GenericDataRequest;
|
|
20
|
+
} & import("@ngrx/store").Action<"[Grid] Update Request">> & import("@ngrx/effects").CreateEffectMetadata;
|
|
21
|
+
goTo$: import("rxjs").Observable<{
|
|
22
|
+
url: string;
|
|
23
|
+
} & import("@ngrx/store").Action<"[Shared] Navigate">> & import("@ngrx/effects").CreateEffectMetadata;
|
|
24
|
+
loadData$: import("rxjs").Observable<({
|
|
25
|
+
source: string;
|
|
26
|
+
error: any;
|
|
27
|
+
} & import("@ngrx/store").Action<"[Shared] Bad Error">) | ({
|
|
28
|
+
name: string;
|
|
29
|
+
count?: number;
|
|
30
|
+
data?: any[];
|
|
31
|
+
} & import("@ngrx/store").Action<"[Grid] Load Success">)> & import("@ngrx/effects").CreateEffectMetadata;
|
|
32
|
+
bulkDelete$: import("rxjs").Observable<({
|
|
33
|
+
source: string;
|
|
34
|
+
error: any;
|
|
35
|
+
} & import("@ngrx/store").Action<"[Shared] Bad Error">) | import("@ngrx/store").Action<"[Grid] Bulk Delete Success">> & import("@ngrx/effects").CreateEffectMetadata;
|
|
36
|
+
refresh$: import("rxjs").Observable<{
|
|
37
|
+
name: string;
|
|
38
|
+
request?: import("./models").GenericDataRequest;
|
|
39
|
+
} & import("@ngrx/store").Action<"[Grid] Load">> & import("@ngrx/effects").CreateEffectMetadata;
|
|
40
|
+
bulkDeleteSuccess$: import("rxjs").Observable<import("@ngrx/store").Action<"[Grid] Refresh">> & import("@ngrx/effects").CreateEffectMetadata;
|
|
41
|
+
constructor();
|
|
42
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<GridEffects, never>;
|
|
43
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<GridEffects>;
|
|
44
|
+
}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "@angular/common";
|
|
3
|
+
export declare class GridModule {
|
|
4
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<GridModule, never>;
|
|
5
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<GridModule, never, [typeof i1.CommonModule], never>;
|
|
6
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<GridModule>;
|
|
7
|
+
}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
export declare const gridFeatureKey = "grid";
|
|
2
|
+
export interface GridMap {
|
|
3
|
+
[key: string]: GridData;
|
|
4
|
+
}
|
|
5
|
+
export interface GridData {
|
|
6
|
+
count: number | undefined;
|
|
7
|
+
data: any[] | undefined;
|
|
8
|
+
loading: boolean;
|
|
9
|
+
}
|
|
10
|
+
export interface State {
|
|
11
|
+
grids: GridMap;
|
|
12
|
+
}
|
|
13
|
+
export declare const initialState: State;
|
|
14
|
+
export declare const reducer: import("@ngrx/store").ActionReducer<State, import("@ngrx/store").Action<string>>;
|
|
15
|
+
export declare const gridFeature: {
|
|
16
|
+
name: "grid";
|
|
17
|
+
reducer: import("@ngrx/store").ActionReducer<State, import("@ngrx/store").Action<string>>;
|
|
18
|
+
selectGridState: import("@ngrx/store").MemoizedSelector<Record<string, any>, State, (featureState: State) => State>;
|
|
19
|
+
selectGrids: import("@ngrx/store").MemoizedSelector<Record<string, any>, GridMap, (featureState: State) => GridMap>;
|
|
20
|
+
};
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { GridData } from './grid.reducer';
|
|
2
|
+
import { GenericDataRequest, GroupFilter, SortDir } from './models';
|
|
3
|
+
import { GridSetup } from './grid-setup';
|
|
4
|
+
export declare const selectGridData: (name: string) => import("@ngrx/store").MemoizedSelector<Record<string, any>, GridData | undefined, (s1: import("./grid.reducer").GridMap) => GridData | undefined>;
|
|
5
|
+
export declare const selectPageIndex: import("@ngrx/store").MemoizedSelector<object, number, (s1: any) => number>;
|
|
6
|
+
export declare const selectPageSize: import("@ngrx/store").MemoizedSelector<object, number, (s1: any) => number>;
|
|
7
|
+
export declare const selectGridFilters: (name: string) => import("@ngrx/store").MemoizedSelector<object, GroupFilter | undefined, (s1: any) => GroupFilter | undefined>;
|
|
8
|
+
export declare const selectTotalCount: (name: string) => import("@ngrx/store").MemoizedSelector<Record<string, any>, number, (s1: GridData | undefined) => number>;
|
|
9
|
+
export declare const selectGridSetup: import("@ngrx/store").MemoizedSelector<object, GridSetup | undefined, (s1: import("../router/store-route-serializer").RouterState) => GridSetup | undefined>;
|
|
10
|
+
export declare const selectSortBy: import("@ngrx/store").MemoizedSelector<object, any, (s1: GridSetup | undefined, s2: any) => any>;
|
|
11
|
+
export declare const selectSortDir: import("@ngrx/store").MemoizedSelector<object, SortDir, (s1: GridSetup | undefined, s2: any) => SortDir>;
|
|
12
|
+
export declare const selectSearchFields: import("@ngrx/store").MemoizedSelector<object, string[] | undefined, (s1: GridSetup | undefined) => string[] | undefined>;
|
|
13
|
+
export declare const selectIsGrid: import("@ngrx/store").MemoizedSelector<object, boolean, (s1: GridSetup | undefined) => boolean>;
|
|
14
|
+
export declare const selectGridName: import("@ngrx/store").MemoizedSelector<object, string | undefined, (s1: GridSetup | undefined) => string | undefined>;
|
|
15
|
+
export declare const selectDataUrl: import("@ngrx/store").MemoizedSelector<object, string, (s1: GridSetup | undefined) => string>;
|
|
16
|
+
export declare const selectFilterText: import("@ngrx/store").MemoizedSelector<object, string, (s1: GroupFilter | undefined) => string>;
|
|
17
|
+
export declare const selectDataRequest: import("@ngrx/store").MemoizedSelector<object, GenericDataRequest, (s1: number, s2: number, s3: any, s4: SortDir, s5: GroupFilter | undefined, s6: GroupFilter | undefined) => GenericDataRequest>;
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
export declare enum FilterLogic {
|
|
2
|
+
Or = 0,
|
|
3
|
+
And = 1
|
|
4
|
+
}
|
|
5
|
+
export interface GroupFilter {
|
|
6
|
+
/** Logical composition in the group */
|
|
7
|
+
logic?: FilterLogic;
|
|
8
|
+
/** Nested groups */
|
|
9
|
+
groups?: GroupFilter[] | undefined;
|
|
10
|
+
/** Filters */
|
|
11
|
+
fields?: FieldFilter[] | undefined;
|
|
12
|
+
}
|
|
13
|
+
export interface GenericDataRequest {
|
|
14
|
+
filters?: GroupFilter | undefined;
|
|
15
|
+
sortBy?: string | undefined;
|
|
16
|
+
sortDir?: SortDir | undefined;
|
|
17
|
+
paging?: Paging | undefined;
|
|
18
|
+
}
|
|
19
|
+
export interface FieldFilter {
|
|
20
|
+
names?: string[] | undefined;
|
|
21
|
+
operator?: FilterOperator | undefined;
|
|
22
|
+
values?: string[] | undefined;
|
|
23
|
+
}
|
|
24
|
+
export declare enum FilterOperator {
|
|
25
|
+
Contains = 0,
|
|
26
|
+
Equals = 1,
|
|
27
|
+
Greater = 2,
|
|
28
|
+
Less = 3,
|
|
29
|
+
In = 4
|
|
30
|
+
}
|
|
31
|
+
export declare enum SortDir {
|
|
32
|
+
Asc = 0,
|
|
33
|
+
Desc = 1
|
|
34
|
+
}
|
|
35
|
+
/** Paging data */
|
|
36
|
+
export interface Paging {
|
|
37
|
+
/** 1-based page number */
|
|
38
|
+
page: number;
|
|
39
|
+
/** Page size */
|
|
40
|
+
pageSize: number;
|
|
41
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
export declare const RouterActions: {
|
|
2
|
+
setQueryParams: import("@ngrx/store").ActionCreator<"[Router] Set Query Params", (props: {
|
|
3
|
+
queryParams: {
|
|
4
|
+
[key: string]: string;
|
|
5
|
+
};
|
|
6
|
+
}) => {
|
|
7
|
+
queryParams: {
|
|
8
|
+
[key: string]: string;
|
|
9
|
+
};
|
|
10
|
+
} & import("@ngrx/store").Action<"[Router] Set Query Params">>;
|
|
11
|
+
};
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
export declare class RouterEffects {
|
|
3
|
+
private store;
|
|
4
|
+
private actions$;
|
|
5
|
+
private router;
|
|
6
|
+
$set: import("rxjs").Observable<[{
|
|
7
|
+
queryParams: {
|
|
8
|
+
[key: string]: string;
|
|
9
|
+
};
|
|
10
|
+
} & import("@ngrx/store").Action<"[Router] Set Query Params">, import("@angular/router").Params]> & import("@ngrx/effects").CreateEffectMetadata;
|
|
11
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<RouterEffects, never>;
|
|
12
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<RouterEffects>;
|
|
13
|
+
}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "@angular/common";
|
|
3
|
+
export declare class StateRouterModule {
|
|
4
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<StateRouterModule, never>;
|
|
5
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<StateRouterModule, never, [typeof i1.CommonModule], never>;
|
|
6
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<StateRouterModule>;
|
|
7
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { RouterReducerState } from "@ngrx/router-store";
|
|
2
|
+
import { RouterState } from "./store-route-serializer";
|
|
3
|
+
export declare const selectRouter: import("@ngrx/store").MemoizedSelector<object, RouterReducerState<RouterState>, import("@ngrx/store").DefaultProjectorFn<RouterReducerState<RouterState>>>;
|
|
4
|
+
export declare const selectRouterState: import("@ngrx/store").MemoizedSelector<object, RouterState, (s1: RouterReducerState<RouterState>) => RouterState>;
|
|
5
|
+
export declare const selectRouteParams: import("@ngrx/store").MemoizedSelector<object, import("@angular/router").Params, (s1: RouterState) => import("@angular/router").Params>;
|
|
6
|
+
export declare const selectRouteParam: (name?: string) => import("@ngrx/store").MemoizedSelector<object, any, (s1: import("@angular/router").Params) => any>;
|
|
7
|
+
export declare const selectUrl: import("@ngrx/store").MemoizedSelector<object, string, (s1: RouterState) => string>;
|
|
8
|
+
export declare const selectSiteSlugParam: import("@ngrx/store").MemoizedSelector<object, any, (s1: any, s2: string) => any>;
|
|
9
|
+
export declare const selectQueryParams: import("@ngrx/store").MemoizedSelector<object, import("@angular/router").Params, (s1: RouterState) => import("@angular/router").Params>;
|
|
10
|
+
export declare const selectQueryParam: (name: string) => import("@ngrx/store").MemoizedSelector<object, any, (s1: import("@angular/router").Params) => any>;
|
|
11
|
+
export declare const selectDataParam: (name: string) => import("@ngrx/store").MemoizedSelector<object, any, (s1: RouterState) => any>;
|
|
12
|
+
export declare const selectUrlWithoutQuery: import("@ngrx/store").MemoizedSelector<object, string, (s1: RouterState) => string>;
|
|
13
|
+
export declare const selectUrlSegments: (count: number) => import("@ngrx/store").MemoizedSelector<object, string, (s1: string) => string>;
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { Data, Params, RouterStateSnapshot } from "@angular/router";
|
|
2
|
+
import { BaseRouterStoreState, RouterStateSerializer } from "@ngrx/router-store";
|
|
3
|
+
export interface RouterState extends BaseRouterStoreState {
|
|
4
|
+
params: Params;
|
|
5
|
+
queryParams: Params;
|
|
6
|
+
data: Data;
|
|
7
|
+
}
|
|
8
|
+
export declare class StoreRouteSerializer implements RouterStateSerializer<RouterState> {
|
|
9
|
+
serialize(routerState: RouterStateSnapshot): RouterState;
|
|
10
|
+
}
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
export declare const SharedActions: {
|
|
2
|
+
back: import("@ngrx/store").ActionCreator<"[Shared] Back", () => import("@ngrx/store").Action<"[Shared] Back">>;
|
|
3
|
+
init: import("@ngrx/store").ActionCreator<"[Shared] Init", () => import("@ngrx/store").Action<"[Shared] Init">>;
|
|
4
|
+
initSuccess: import("@ngrx/store").ActionCreator<"[Shared] Init Success", (props: {
|
|
5
|
+
build: string;
|
|
6
|
+
}) => {
|
|
7
|
+
build: string;
|
|
8
|
+
} & import("@ngrx/store").Action<"[Shared] Init Success">>;
|
|
9
|
+
noop: import("@ngrx/store").ActionCreator<"[Shared] Noop", () => import("@ngrx/store").Action<"[Shared] Noop">>;
|
|
10
|
+
startRequest: import("@ngrx/store").ActionCreator<"[Shared] Start Request", () => import("@ngrx/store").Action<"[Shared] Start Request">>;
|
|
11
|
+
endRequest: import("@ngrx/store").ActionCreator<"[Shared] End Request", () => import("@ngrx/store").Action<"[Shared] End Request">>;
|
|
12
|
+
transientError: import("@ngrx/store").ActionCreator<"[Shared] Transient Error", (props: {
|
|
13
|
+
source: string;
|
|
14
|
+
error: any;
|
|
15
|
+
}) => {
|
|
16
|
+
source: string;
|
|
17
|
+
error: any;
|
|
18
|
+
} & import("@ngrx/store").Action<"[Shared] Transient Error">>;
|
|
19
|
+
badError: import("@ngrx/store").ActionCreator<"[Shared] Bad Error", (props: {
|
|
20
|
+
source: string;
|
|
21
|
+
error: any;
|
|
22
|
+
}) => {
|
|
23
|
+
source: string;
|
|
24
|
+
error: any;
|
|
25
|
+
} & import("@ngrx/store").Action<"[Shared] Bad Error">>;
|
|
26
|
+
navigate: import("@ngrx/store").ActionCreator<"[Shared] Navigate", (props: {
|
|
27
|
+
url: string;
|
|
28
|
+
}) => {
|
|
29
|
+
url: string;
|
|
30
|
+
} & import("@ngrx/store").Action<"[Shared] Navigate">>;
|
|
31
|
+
accessDenied: import("@ngrx/store").ActionCreator<"[Shared] Access Denied", () => import("@ngrx/store").Action<"[Shared] Access Denied">>;
|
|
32
|
+
login: import("@ngrx/store").ActionCreator<"[Shared] Login", (props: {
|
|
33
|
+
returnUrl: string;
|
|
34
|
+
}) => {
|
|
35
|
+
returnUrl: string;
|
|
36
|
+
} & import("@ngrx/store").Action<"[Shared] Login">>;
|
|
37
|
+
};
|