android-wrapper/@capacitor/assets/dist/output-asset.js
Pieter Vander Vennet 6947a1adba
Some checks failed
/ build_android (push) Failing after 21s
Add dependency
2025-06-18 18:50:46 +02:00

22 lines
638 B
JavaScript

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.OutputAsset = void 0;
/**
* An instance of a generated asset
*/
class OutputAsset {
constructor(template, asset, project, destFilenames, outputInfoMap) {
this.template = template;
this.asset = asset;
this.project = project;
this.destFilenames = destFilenames;
this.outputInfoMap = outputInfoMap;
}
getDestFilename(assetName) {
return this.destFilenames[assetName];
}
getOutputInfo(assetName) {
return this.outputInfoMap[assetName];
}
}
exports.OutputAsset = OutputAsset;