UNPKG

@skhemata/skhemata-crowdfunding-campaign

Version:

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

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