UNPKG

@revenuecat/purchases-ui-js

Version:

Web components for Paywalls. Powered by RevenueCat

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