office-addin-manifest
Version:
Read and modify Office Add-in manifest files.
17 lines • 607 B
JavaScript
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT license.
Object.defineProperty(exports, "__esModule", { value: true });
exports.ManifestInfo = exports.ManifestType = exports.DefaultSettings = void 0;
class DefaultSettings {
}
exports.DefaultSettings = DefaultSettings;
var ManifestType;
(function (ManifestType) {
ManifestType["JSON"] = "json";
ManifestType["XML"] = "xml";
})(ManifestType = exports.ManifestType || (exports.ManifestType = {}));
class ManifestInfo {
}
exports.ManifestInfo = ManifestInfo;
//# sourceMappingURL=manifestInfo.js.map
;