UNPKG

@revenuecat/purchases-ui-js

Version:

Web components for Paywalls. Powered by RevenueCat

11 lines (10 loc) 290 B
import type { Snippet } from "svelte"; export interface Props { children: Snippet<[]>; globals: { brandingName: string; }; } declare const WithLayout: import("svelte").Component<Props, {}, "">; type WithLayout = ReturnType<typeof WithLayout>; export default WithLayout;