After Angular upgrade from 13 to 14 i got an error
The inferred type of 'loadOpenTableIds' cannot be named without a reference to 'my-lib/node_modules/typesafe-actions/dist/create-async-action'. This is likely not portable. A type annotation is necessary.
export const aAsyncAction = createAsyncAction(...
i have to write export const aAsyncAction: any =..
does anyone know why it worked before and now i have to add an type?
After Angular upgrade from 13 to 14 i got an error
The inferred type of 'loadOpenTableIds' cannot be named without a reference to 'my-lib/node_modules/typesafe-actions/dist/create-async-action'. This is likely not portable. A type annotation is necessary.
export const aAsyncAction = createAsyncAction(...
i have to write export const aAsyncAction: any =..
does anyone know why it worked before and now i have to add an type?