== should parse == const wrappedApi: API
| undefined = api != null ? {
process: async (params: Params): Promise ;
return response;
},
} : undefined;
[expect]
const wrappedApi: API | undefined = api != null
? {
process: async (params: Params): Promise ;
return response;
},
}
: undefined;