const StripeEvent = S.magicInterfaceConversion<Stripe.Event>(); // does this exist?
const event = req.body as Stripe.Event // ugh what Stripe wants you to do
const evt = pipe(req.body, S.parse(StripeEvent)) // what I would rather do
const StripeEvent = S.magicInterfaceConversion<Stripe.Event>(); // does this exist?
const event = req.body as Stripe.Event // ugh what Stripe wants you to do
const evt = pipe(req.body, S.parse(StripeEvent)) // what I would rather do