@pnp/sp
Version:
pnp - provides a fluent api for working with SharePoint REST
13 lines • 364 B
JavaScript
import { SPFI } from "../fi.js";
import { HubSites } from "./types.js";
import "./site.js";
import "./web.js";
export { HubSite, HubSites, } from "./types.js";
Reflect.defineProperty(SPFI.prototype, "hubSites", {
configurable: true,
enumerable: true,
get: function () {
return this.create(HubSites);
},
});
//# sourceMappingURL=index.js.map