Menu
Your Cart

Original Lenovo 45W Type-C Power Adapter for Laptops

Original Lenovo 45W Type-C Power Adapter for Laptops
-11 %
Original Lenovo 45W Type-C Power Adapter for Laptops
  • Price: TK 1,900/-
  • special price: TK 1,700/-
  • Stock: In Stock
  • Model: 45W Type-C
TK 1,700/-
TK 1,900/-
Ex Tax: TK 1,700/-

Key Features

    • For Brand: Lenovo
    • Model: 45w
    • Type: Type-C
    • Output Voltage:DC 5V/12V/20V ~ 2A/3A/2.25A
    • Input Voltage: AC 100-240V, 50/60Hz
    • Warranty: 1 year
    Specification
    General Feature
    For BrandLenovo
    Model45W Type-C
    TypeBrand New
    Technical Info
    Wattage (W)45w
    Input VoltageAC 100-240V, 50/60Hz
    Output VoltageDC 5V/12V/20V ~ 2A/3A/2.25A
    Warranty Information
    Warranty01 Year
    Description

    Original Lenovo 45W Type-C Power Adapter for Laptops

    The Original Lenovo 45W Type-C Power Adapter is a high-quality charger designed to deliver reliable and efficient power to your Lenovo laptops and other compatible devices. This power adapter ensures that your device stays charged, whether you're working at the office, studying at home, or traveling. Its compact and lightweight design makes it easy to carry, providing convenience for users on the go.

    With its 45W output, this adapter delivers fast and consistent charging, protecting your device from potential power surges and ensuring optimal performance. It is compatible with a wide range of Lenovo laptops and devices that use the USB Type-C charging port. The adapter is made from durable materials, ensuring longevity and resistance to wear and tear. Additionally, it meets Lenovo’s stringent quality standards, guaranteeing safe and reliable operation.

    Whether you need a replacement for a damaged charger or an additional adapter for travel, this Original Lenovo 45W Type-C Power Adapter is the perfect solution for ensuring your laptop stays powered up and ready to use.


    Buy the Original Lenovo 45W Type-C Power Adapter from Dear IT Solution

    For the best deals on the Original Lenovo 45W Type-C Power Adapter, look no further than Dear IT Solution. We are dedicated to providing the best quality product insured in Bangladesh at competitive prices. Whether you're purchasing for personal or professional use, we ensure that all our products meet high-quality standards.

    At Dear IT Solution, we offer a seamless shopping experience, from easy ordering to fast delivery across Bangladesh. Our customer service team is always available to assist with your inquiries, ensuring you have all the information you need before making a purchase.

    Upgrade to the Original Lenovo 45W Type-C Power Adapter today and enjoy peace of mind with reliable and safe charging for your Lenovo devices. Don’t miss out on the best price in Bangladesh—visit Dear IT Solution now and place your order!

    Review

    Write a review

    Note: HTML is not translated!
    Bad Good
    Critial Path: Hello world!
    Hello world!
    /** * @license * Copyright 2017 Google LLC * SPDX-License-Identifier: Apache-2.0 *//** * @fileoverview Diagnostic audit that lists all JavaScript libraries detected on the page */import {Audit} from '../audit.js'; import * as i18n from '../../lib/i18n/i18n.js';const UIStrings = { /** Title of a Lighthouse audit that provides detail on the Javascript libraries that are used on the page. */ title: 'Detected JavaScript libraries', /** Description of a Lighthouse audit that tells the user what this audit is detecting. This is displayed after a user expands the section to see more. No character length limits. */ description: 'All front-end JavaScript libraries detected on the page. [Learn more about this JavaScript library detection diagnostic audit](https://developer.chrome.com/docs/lighthouse/best-practices/js-libraries/).', /** Label for a column in a data table; entries will be the version numbers of the detected Javascript libraries. */ columnVersion: 'Version', };const str_ = i18n.createIcuMessageFn(import.meta.url, UIStrings);class JsLibrariesAudit extends Audit { /** * @return {LH.Audit.Meta} */ static get meta() { return { id: 'js-libraries', title: str_(UIStrings.title), scoreDisplayMode: Audit.SCORING_MODES.INFORMATIVE, description: str_(UIStrings.description), requiredArtifacts: ['Stacks'], }; }/** * @param {LH.Artifacts} artifacts * @return {LH.Audit.Product} */ static audit(artifacts) { const libDetails = artifacts.Stacks .filter(stack => stack.detector === 'js') // Don't show the fast paths in the table. .filter(stack => !stack.id.endsWith('-fast')) .map(stack => ({ name: stack.name, version: stack.version, npm: stack.npm, }));/** @type {LH.Audit.Details.Table['headings']} */ const headings = [ {key: 'name', valueType: 'text', label: str_(i18n.UIStrings.columnName)}, {key: 'version', valueType: 'text', label: str_(UIStrings.columnVersion)}, ]; const details = Audit.makeTableDetails(headings, libDetails);const debugData = { type: /** @type {const} */ ('debugdata'), stacks: artifacts.Stacks.map(stack => { return { id: stack.id, version: stack.version, }; }), };if (!libDetails.length) { return {score: null, notApplicable: true}; }return { score: 1, // Always pass for now. details: { ...details, debugData, }, }; } }export default JsLibrariesAudit; export {UIStrings};