== should parse ==
const wrappedApi: API<P> | undefined = api != null ? {
  process: async (params: Params): Promise<Response<P>> => {
    let response: Response<P>;
    return response;
  },
} : undefined;

[expect]
const wrappedApi: API<P> | undefined = api != null
    ? {
        process: async (params: Params): Promise<Response<P>> => {
            let response: Response<P>;
            return response;
        },
    }
    : undefined;
