@vertical-insure/web-components
Version:
Vertical Insure Web Components using Lit and Open Web Standards
18 lines (17 loc) • 587 B
TypeScript
import { TicketRefundPolicyAttributes } from '../../lib/model/policy-attributes';
import { QuoteElement } from '../../lib/quote-element';
export declare class TicketRefund extends QuoteElement<TicketRefundPolicyAttributes> {
static styles: import("lit").CSSResultGroup[];
insurableAmount?: number;
eventStartDate?: string;
eventEndDate?: string;
constructor();
/**
* @ignore
*/
get policyAttributes(): {
insurable_amount: number | undefined;
event_start_date: string | undefined;
event_end_date: string | undefined;
};
}