icestore
icestore copied to clipboard
Feature: How should I set the state type with null initial value?
Problem Description
The initial value of state is null, and the type is user
Proposed Solution
Alternatives Considered
Additional Information
interface User { id: number; name: string; } export default { state: undefined, }