mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-18 15:33:04 +00:00
7 lines
115 B
TypeScript
7 lines
115 B
TypeScript
import { Action } from '@ngrx/store';
|
|
|
|
export class ActionMock implements Action {
|
|
type = null;
|
|
payload: {};
|
|
}
|