/** @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 */ /// import { Readable } from 'stream'; import { RequestOutput } from '@webruntime/api'; export interface ResourceBundle { specifier: string; uid: string; path: string; results: RequestOutput[]; } export declare class ResourceBundle implements ResourceBundle { constructor({ uid, path, specifier, results }: { uid: any; path: any; specifier: any; results: any; }); getReadableStream(): Readable; } //# sourceMappingURL=resource-bundle.d.ts.map