UNPKG

@revenuecat/purchases-ui-js

Version:

Web components for Paywalls. Powered by RevenueCat

7 lines (6 loc) 391 B
import type { VariableDictionary } from "../types/variables"; import { type Readable } from "svelte/store"; export type VariablesStore = Readable<VariableDictionary | undefined>; export declare function setVariablesContext(variables: VariablesStore): void; export declare function getVariablesContext(): VariablesStore; export declare function getOptionalVariablesContext(): VariablesStore;