1.
const stripe = require("stripe")(process.env.STRIPE_KEY);
This is the error:- This expression is not callable.
Type 'typeof import("stripe")' has no call signatures.
2.
const { products } = ctx.request.body;
This is the error:- Property 'body' does not exist on type 'Request'.
https://github.com/ShariqAnsari88/strapi-simple-one/blob/39443bc26aef3f17ebad5e82bff0fe278b2f8a70/src/api/order/controllers/order.js#L11
1. const stripe = require("stripe")(process.env.STRIPE_KEY); This is the error:- This expression is not callable. Type 'typeof import("stripe")' has no call signatures.
2. const { products } = ctx.request.body; This is the error:- Property 'body' does not exist on type 'Request'.