@billing-js/react-billing-js
Advanced tools
Comparing version 1.0.85 to 1.0.86
@@ -1,8 +0,11 @@ | ||
declare const _default: ({ visible, maskClosable, maskClassName, onClose, children }: { | ||
import React from "react"; | ||
interface Props { | ||
children: React.ReactNode; | ||
onClose?: () => void; | ||
open?: boolean; | ||
maskClassName?: string; | ||
maskClosable?: boolean; | ||
visible?: boolean; | ||
maskClosable?: boolean; | ||
maskClassName?: any; | ||
onClose?: () => void; | ||
children?: any; | ||
}) => JSX.Element; | ||
} | ||
declare const _default: ({ visible, maskClosable, maskClassName, onClose, children }: Props) => JSX.Element; | ||
export default _default; |
{ | ||
"name": "@billing-js/react-billing-js", | ||
"version": "1.0.85", | ||
"version": "1.0.86", | ||
"description": "Billing js library", | ||
@@ -5,0 +5,0 @@ "author": "Billing.js", |
@@ -77,3 +77,3 @@ import * as React from "react"; | ||
showPrivacyPolicy?: boolean; | ||
cancelSubscription?: { | ||
cancelSubscriptionOptions?: { | ||
showModal?: boolean; | ||
@@ -80,0 +80,0 @@ cancelMessage?: string; |
@@ -25,9 +25,6 @@ import { Price } from "../"; | ||
}; | ||
export declare const getInterval: ({ interval, interval_count }: { | ||
interval: any; | ||
interval_count: any; | ||
}) => any; | ||
export declare const getInterval: (props: any) => any; | ||
export declare const getDate: (timestamp: any) => string; | ||
export declare const getDaysUntil: (timestamp: any) => string; | ||
export declare const computeReduction: (total: number, coupon: Stripe.Coupon, currency: Currency) => number; | ||
export declare const computeReduction: (total: number, coupon: Stripe.Coupon | null | undefined, currency: Currency) => number; | ||
export declare const computePricing: ({ price: { billing_scheme, transform_quantity, unit_amount, tiers_mode, tiers }, quantity }: { | ||
@@ -34,0 +31,0 @@ price: Price; |
Sorry, the diff of this file is too big to display
887259
4826