@salla.sa/twilight-components
Version:
Salla Web Component
19 lines (18 loc) • 486 B
TypeScript
export interface FulfillmentMethod {
id: string;
title: string;
subtitle: string;
iconClass: string;
}
/**
* @name SallaFulfillmentMethods
* @description Displays product fulfillment options (pickup and delivery) as two side-by-side cards
* @tag salla-fulfillment-methods
*/
export declare class SallaFulfillmentMethods {
methods: FulfillmentMethod[];
shouldRender: boolean;
componentDidLoad(): Promise<void>;
private setLabels;
render(): any;
}