safe-webpack-define-plugin
Version:
A webpack (typescript ready) plugin to define global variables on outputted bundles
19 lines • 659 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.ExposureStrategy = void 0;
var ExposureStrategy;
(function (ExposureStrategy) {
/**
* Objects can be referenced by their name
*
* @example `{ hello: 'there' }` can be referenced by `hello`
*/
ExposureStrategy["NONE"] = "NONE";
/**
* Objects can be referenced by accessing the window object
*
* @example `{ hello: 'there' }` can be referenced by `window.hello`
*/
ExposureStrategy["WINDOW"] = "WINDOW";
})(ExposureStrategy = exports.ExposureStrategy || (exports.ExposureStrategy = {}));
//# sourceMappingURL=Args.js.map