@microbitsclub/paywall-solid
Version:
Solid components for Microbits paywalls
9 lines (8 loc) • 333 B
TypeScript
import type { JSX } from 'solid-js';
import { PaywallPopoverConfig } from './paywall-popover-store';
export interface PaywallPopoverProviderProps {
config: PaywallPopoverConfig;
dontWrap?: boolean;
children: JSX.Element;
}
export declare const PaywallPopoverProvider: (props: PaywallPopoverProviderProps) => JSX.Element;