@billing-js/react-billing-js
Advanced tools
Comparing version 1.0.84 to 1.0.85
import * as React from "react"; | ||
import { BillingOptions } from "../types"; | ||
interface Props { | ||
children: React.ReactNode; | ||
children?: React.ReactNode; | ||
stripeAccount: string; | ||
productPageUrl: string; | ||
options: BillingOptions; | ||
liveMode: boolean; | ||
onError: (error: Error) => void; | ||
productPageUrl?: string; | ||
options?: BillingOptions; | ||
liveMode?: boolean; | ||
onError?: (error: Error) => void; | ||
} | ||
declare const _default: ({ stripeAccount, options, onError, liveMode, children }: Props) => JSX.Element; | ||
export default _default; |
{ | ||
"name": "@billing-js/react-billing-js", | ||
"version": "1.0.84", | ||
"version": "1.0.85", | ||
"description": "Billing js library", | ||
@@ -5,0 +5,0 @@ "author": "Billing.js", |
@@ -77,5 +77,5 @@ import * as React from "react"; | ||
showPrivacyPolicy?: boolean; | ||
cancelSubscription: { | ||
showModal: boolean; | ||
cancelMessage: string; | ||
cancelSubscription?: { | ||
showModal?: boolean; | ||
cancelMessage?: string; | ||
}; | ||
@@ -82,0 +82,0 @@ } |
886948