Types for Subscription, Plan and Invoice missing
See original GitHub issueI had a very hacky solution in place to make the types of the node lib available in the front end. I was pleased to see that there now is this lib that provides the types. I am missing types for Subscription
, Plan
and Invoice
.
Is it planned to add them?
Issue Analytics
- State:
- Created 3 years ago
- Comments:5
Top Results From Across the Web
Standard Support Invoice - Microsoft Q&A
I'm able to see two subscriptions, one of which is a pay-as-you-go subscription. The other is a Standard support subscription.
Read more >6 Common Invoicing Problems and How to Solve Them
Missing Invoices If invoices aren't getting to their intended recipients, they're not going to get paid. And if you're using net 30 payment ......
Read more >How subscriptions work | Stripe Documentation
Subscriptions that include free trials, usage-based billing, invoices with coupons, or applied customer credit balances often result in non-payment invoices.
Read more >What is Consolidated Billing? - Zoho Subscriptions
Consolidated billing is a billing method where a single invoice is generated for multiple purchases or subscriptions of a customer.
Read more >Fix problems with subscriptions - Android - Google Play Help
Find missing subscriptions · The email you used with the subscription app may be different than your Google Account. · Check your other...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
No need to share the hack. TS 3.8 type-only imports solve this problem.
Install
stripe
and@types/stripe
and then be sure to only use the type-only imports.This way the node types can be consumed in a front-end project 😄
Nice! Glad to hear it.