UNPKG

@pnp/sp

Version:

pnp - provides a fluent api for working with SharePoint REST

12 lines 533 B
import { _Web } from "../webs/types.js"; import { SiteDesigns } from "./types.js"; _Web.prototype.getSiteDesignRuns = function (siteDesignId) { return SiteDesigns(this, "").getSiteDesignRun(undefined, siteDesignId); }; _Web.prototype.addSiteDesignTask = function (siteDesignId) { return SiteDesigns(this, "").addSiteDesignTaskToCurrentWeb(siteDesignId); }; _Web.prototype.getSiteDesignRunStatus = function (runId) { return SiteDesigns(this, "").getSiteDesignRunStatus(undefined, runId); }; //# sourceMappingURL=web.js.map