{ id: string; description: string | null; ... }is not assignable to parameter of type{ readonly id: string; readonly description?: string; ...}Types of property description are incompatible.Type string | null is not assignable to type stringType null is not assignable to type string
{ id: string; description: string | null; ... }is not assignable to parameter of type{ readonly id: string; readonly description?: string; ...}Types of property description are incompatible.Type string | null is not assignable to type stringType null is not assignable to type string