@microsoft/sp-webpart-base
Version:
SharePoint Framework support for building web parts
21 lines • 682 B
JavaScript
;
// Copyright (c) Microsoft. All rights reserved.
Object.defineProperty(exports, "__esModule", { value: true });
exports.WebPartIsolationLevel = void 0;
/**
* Enum describing different levels isolation supported for a web part.
*
* @alpha
*/
var WebPartIsolationLevel;
(function (WebPartIsolationLevel) {
/**
* Web part is not isolated.
*/
WebPartIsolationLevel["None"] = "None";
/**
* Web part's DOM is isolated from the main page's DOM.
*/
WebPartIsolationLevel["DomIsolation"] = "DOMIsolation";
})(WebPartIsolationLevel || (exports.WebPartIsolationLevel = WebPartIsolationLevel = {}));
//# sourceMappingURL=IWebPartData.js.map