UNPKG

@microbitsclub/paywall-solid

Version:
10 lines (9 loc) 305 B
import { JSX } from 'solid-js'; export interface PaywallPopoverContentProps { visible?: boolean; paywallId?: string; paywallPrice?: number; onConfirm?: () => void; onCancel?: () => void; } export declare const PaywallPopoverContent: (props: PaywallPopoverContentProps) => JSX.Element;