@blocklet/payment-react
Version:
Reusable react components for payment kit v2
14 lines (13 loc) • 417 B
TypeScript
import type { TLineItemExpanded } from '@blocklet/payment-types';
interface TrialInfoProps {
trial: {
active: boolean;
days: number;
afterTrialPrice: string | null;
afterTrialInterval: string | null;
};
mode: string;
items: TLineItemExpanded[];
}
export default function TrialInfo({ trial, mode, items }: TrialInfoProps): import("react").JSX.Element | null;
export {};