Skip to content
Snippets Groups Projects
Commit 727c51fc authored by OZGCloud's avatar OZGCloud
Browse files

OZG-2966 OZG-3098 move generic ngrx/actions stuff to tech-util

parent b4474c88
No related branches found
No related tags found
No related merge requests found
......@@ -5,6 +5,7 @@ export * from './lib/error/error.handler';
export * from './lib/error/error.util';
export * from './lib/http.util';
export * from './lib/message-code';
export * from './lib/ngrx/actions';
export * from './lib/pipe/convert-for-data-test.pipe';
export * from './lib/pipe/enum-to-label.pipe';
export * from './lib/pipe/file-size.pipe';
......
import { ActionCreator } from '@ngrx/store';
import { TypedAction } from '@ngrx/store/src/models';
import { ApiError } from '../tech.model';
export interface TypedActionCreatorWithProps<T> extends ActionCreator<string, (props: T) => T & TypedAction<string>> { }
export interface TypedActionCreator extends ActionCreator<string, () => TypedAction<string>> { }
export interface ApiErrorAction {
apiError: ApiError
}
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment