src/app/core/store/data/data.actions.ts
Properties |
|
constructor(filter: Partial
|
||||||
Defined in src/app/core/store/data/data.actions.ts:4
|
||||||
Parameters :
|
Static Readonly type |
Type : string
|
Default value : '[DataState] Update filter'
|
Defined in src/app/core/store/data/data.actions.ts:4
|
import { Filter } from 'ccf-database';
export class UpdateFilter {
static readonly type = '[DataState] Update filter';
constructor(readonly filter: Partial<Filter>) {}
}