@revenuecat/purchases-ui-js
Version:
Web components for Paywalls. Powered by RevenueCat
13 lines (12 loc) • 546 B
TypeScript
import type { InputOptionProps } from "../../types/components/options";
interface Props extends InputOptionProps {
fieldId?: string;
selectionMode?: "single" | "multiple";
onButtonAction?: (action: {
type: string;
}, actionId?: string) => void;
onInputChanged?: (fieldId: string, value: string, actionId?: string) => void;
}
declare const InputOptionTestWrapper: import("svelte").Component<Props, {}, "">;
type InputOptionTestWrapper = ReturnType<typeof InputOptionTestWrapper>;
export default InputOptionTestWrapper;