Erbauer EXT Cordless 18V ELB18-Li - KIT Garden blower

£49.99
people are viewing this right now

Free worldwide shipping
Free returns
Sustainably made
Secure payments
Description

This garden blower features a strong flow rate and airflow speed which quickly and easily clears debris from hard surfaces.

  • Manufacturer guarantee: 2 years

Features and benefits

  • Offers variable and cruise speed control
  • It's lightweight design makes it compact and easy to handle
  • The soft-grip handle makes it comfortable to use

Specifications

Brand Erbauer
Model name/number ELB18-Li - KIT
Airflow speed 540km/h
Battery chemistry Li-ion
Battery voltage 18V
Product code 5059340486543
1
Select product
Selected 0 item(s)
class SpzCheckoutNotificationHandler extends SPZ.BaseElement { constructor(element) { super(element); this.timer_ = null; } isLayoutSupported(layout) { return layout == SPZCore.Layout.LOGIC; } sendVariantListUpdateEvent_(data) { const messageData = { type: "theme_variant_list_update", data: { orderToken: data.order_token || data.order_id } }; clearInterval(this.timer_); if(!window.CheckoutAPI) { this.timer_ = setInterval(() => { if(window.CheckoutAPI) { clearInterval(this.timer_); postMessage && postMessage(messageData); } }, 500); } else { postMessage && postMessage(messageData); } } buildCallback() { this.action_ = SPZServices.actionServiceForDoc(this.element); this.registerAction('sendVariantListUpdateEvent', (param) => { this.sendVariantListUpdateEvent_(param.args.data); }); } } SPZ.defineElement('spz-custom-checkout-notification-handler', SpzCheckoutNotificationHandler); function handleGetOrderInfo(data) { if (data.order_id) { let api = `/api/checkout/order/info?order_id=${data.order_id}`; return Promise.resolve(api); } return Promise.reject({}); } function addEventListenerKickItems(data) { if (data.type === 'checkout_kick_items') { return Promise.resolve(data); } return Promise.reject({}); } exportFunction('handleGetOrderInfo', handleGetOrderInfo) exportFunction('addEventListenerKickItems', addEventListenerKickItems)