UNPKG

@beamimpact/web-sdk

Version:

The Beam SDK enables brands to connect with their customers over shared values, not transactional discounts, to build stronger loyalty. Our integration achieves this by allowing customers to (a) choose a nonprofit where the brand will donate part of their

20 lines (18 loc) 485 B
import * as lit_html from 'lit-html'; import * as lit from 'lit'; import { LitElement } from 'lit'; type Promo = { "promo-text-long": string; "promo-text-short": string; }; declare class BeamPromoInfoPill extends LitElement { promo: Promo | null; shortVersion: boolean; static get styles(): lit.CSSResult; render(): lit_html.TemplateResult<1>; } declare global { interface HTMLElementTagNameMap { "beam-promo-info-pill": BeamPromoInfoPill; } }