libs/ngx-pfe/models/global-config.model.ts
Here comes all the things that can be used globaly like:
Properties |
|
actions |
actions:
|
Type : GlobalActions<ACTIONS>
|
Optional |
import { GlobalActions } from './../pfe-actions/pfe-actions.model';
/**
* Here comes all the things that can be used globaly like:
* - Actions
*/
export interface PfeGlobalConfig<ACTIONS> {
actions?: GlobalActions<ACTIONS>;
}