UNPKG

@revenuecat/purchases-ui-js

Version:

Web components for Paywalls. Powered by RevenueCat

10 lines (9 loc) 256 B
import type { Snippet } from "svelte"; interface TextProps { component?: string; style?: string; children?: Snippet; } declare const Text: import("svelte").Component<TextProps, {}, "">; type Text = ReturnType<typeof Text>; export default Text;