UNPKG

@skhemata/skhemata-crowdfunding-campaign

Version:

Skhemata Crowdfunding Campaign Web Component. This web component provides crowdfunding campaign functionality (reward/donation based) for a website.

16 lines (15 loc) 551 B
import { CSSResult, LitElement } from 'lit'; export declare class CampaignReward extends LitElement { static styles: CSSResult[]; currencySymbols?: any; pledge: any; campaign?: any; openStatus: boolean; handleContribute: () => void; handleContributionAmount: () => void; contributionAmount: number; handleChosenReward: (reward: string, pledge: object) => void; handleRewardClick: (reward: string, amount: number) => void; firstUpdated(): Promise<void>; render(): import("lit-html").TemplateResult<1>; }