@skhemata/skhemata-crowdfunding-campaign
Version:
Skhemata Crowdfunding Campaign Web Component. This web component provides crowdfunding campaign functionality (reward/donation based) for a website.
20 lines (19 loc) • 593 B
TypeScript
import { CSSResult, LitElement } from 'lit';
import { Menu } from '../components/Menu';
export declare class CampaignHeader extends LitElement {
static styles: CSSResult[];
static get scopedElements(): {
'menu-component': typeof Menu;
};
openStatus: boolean;
campaign?: any;
apiUrl?: string;
campaignMainImage?: any;
apiFull?: string;
authState: boolean | undefined;
handleAuthStateChange: () => void;
updated(): void;
handleRewardOpen: () => void;
private getCampaignMainImage;
render(): import("lit-html").TemplateResult<1>;
}