Am working on angular 13 version.Trying to import and use action file inside a .spec
file shows an error like below
Cannot use namespace 'MyActions' as a type.ts(2709)
This is my spec file
import * as MyActions from '../../core/store/action/my.actions';
describe('MyActionComponent', () => {
let myActions: MyActions;
Please excuse for full source code.
Thanks in advance