@shockpkg/dir-projector
Version:
Package for creating Shockwave Director projectors
38 lines (30 loc) • 614 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.BundleWindows = void 0;
var _bundle = require("../bundle");
/**
* BundleWindows constructor.
*
* @param path Output path for the main application.
*/
class BundleWindows extends _bundle.Bundle {
/**
* ProjectorWindows instance.
*/
constructor(path) {
super(path);
this.projector = void 0;
}
/**
* Main application file extension.
*
* @returns File extension.
*/
get extension() {
return '.exe';
}
}
exports.BundleWindows = BundleWindows;
//# sourceMappingURL=windows.js.map