UNPKG

@revenuecat/purchases-ui-js

Version:

Web components for Paywalls. Powered by RevenueCat

14 lines (13 loc) 366 B
import type { BaseComponent } from "../base"; import type { StackProps } from "./stack"; export interface CountdownStyle { type: "date"; date: string; } export interface CountdownProps extends BaseComponent { type: "countdown"; visible?: boolean | null; style: CountdownStyle; countdown_stack: StackProps; end_stack: StackProps | null; }