/** * Copyright (c) 2021, salesforce.com, inc. * All rights reserved. * SPDX-License-Identifier: MIT * For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/MIT */ /** * Implementation of LWC rollup plugin with added support to resolve with no specific importer * https://github.com/salesforce/lwc/tree/master/packages/%40lwc/rollup-plugin * Passes in root project directory as the importer if missing * @param pluginOptions LWC Options */ export default function rollupLwrCompiler(pluginOptions: any): { name: string; options({ input }: { input: any; }): void; resolveId(importee: any, importer: any): any; load: any; transform: any; }; //# sourceMappingURL=rollup-plugin-lwr.d.ts.map