UNPKG

@skhemata/skhemata-crowdfunding-campaign

Version:

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

18 lines (17 loc) 542 B
import { SkhemataBase, CSSResult } from '@skhemata/skhemata-base'; export declare class Menu extends SkhemataBase { static styles: CSSResult[]; apiFull: string | undefined; userData: { email: string; first_name: string; last_name: string; }; authState: boolean | undefined; handleAuthStateChange: () => void; handleProfile: () => void; firstUpdated(): Promise<void>; loadUser: () => Promise<void>; handleLogout: () => void; render(): import("lit-html").TemplateResult<1>; }