Struggling with a typing issue in Typescript while using Ramda. Here's my dilemma:
My code
const podName = R.propOr(null, 'podName', node) as String | null
error:
TS2352:Type 'propOr_general_011' cannot be converted to type 'String'. Property 'charAt' is missing in type 'propOr_general_011'
Does anyone have any insights into why this error is happening? Thank you