const cart = {
products: (localStorage.getItem("cart") || []),
};
export const CartReduser = (state = cart, action: any) => {}
В итоге ошибка Object literal's property 'products' implicitly has an 'string | any[]' type.
Как задать тип для state? Точнее для products
localstorage просто возвращает массив объектов с id и name