@microsoft/sp-webpart-base
Version:
SharePoint Framework support for building web parts
20 lines • 726 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.MinimalWebPartHost = void 0;
var tslib_1 = require("tslib");
var BaseWebPartHost_1 = require("./BaseWebPartHost");
/**
* The minimal web part host is the simplest implementation needed to use the
* Client Side Web Part Manager.
*
* @internal
*/
var MinimalWebPartHost = /** @class */ (function (_super) {
tslib_1.__extends(MinimalWebPartHost, _super);
function MinimalWebPartHost() {
return _super !== null && _super.apply(this, arguments) || this;
}
return MinimalWebPartHost;
}(BaseWebPartHost_1.BaseWebPartHost));
exports.MinimalWebPartHost = MinimalWebPartHost;
//# sourceMappingURL=MinimalWebPartHost.js.map