/** @hidden */ /** * Copyright (c) 2019, 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 */ /** * Plugin that will resolve and load "virtual" modules * i.e. generated modules that are present in memory * but not present on the file system. * * @param {object} modules - The modules to load, keyed by module id with the * modules source as values. * @param {string} namespace - The namespace for this bundle */ export default function plugin(modules: Object, namespace: string): { name: string; load(importee: string): any; resolveId(importee: string, importer?: string | undefined): string | null; }; //# sourceMappingURL=rollup-plugin-virtual.d.ts.map