(property) PgResponseData.orderAmount?: string | undefined Type 'string | 0' is not assignable to type 'string | undefined'. Type '0' is not assignable to type 'string | undefined'.ts(2322) code example
Example 1: Type 'string | undefined' is not assignable to type 'string'.
let name1:string = person.name as string;
Example 2: Type 'string | undefined' is not assignable to type 'string'.
let name1:string = person.name!;
// ^ note the exclamation mark here