UNPKG

cloudflare

Version:

The official TypeScript library for the Cloudflare API

42 lines 2.32 kB
// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. import { APIResource } from 'cloudflare/resource'; export class RocketLoaderResource extends APIResource { /** * Rocket Loader is a general-purpose asynchronous JavaScript optimisation that * prioritises rendering your content while loading your site's Javascript * asynchronously. Turning on Rocket Loader will immediately improve a web page's * rendering time sometimes measured as Time to First Paint (TTFP), and also the * `window.onload` time (assuming there is JavaScript on the page). This can have a * positive impact on your Google search ranking. When turned on, Rocket Loader * will automatically defer the loading of all Javascript referenced in your HTML, * with no configuration required. Refer to * [Understanding Rocket Loader](https://support.cloudflare.com/hc/articles/200168056) * for more information. */ edit(params, options) { const { zone_id, ...body } = params; return this._client.patch(`/zones/${zone_id}/settings/rocket_loader`, { body, ...options, })._thenUnwrap((obj) => obj.result); } /** * Rocket Loader is a general-purpose asynchronous JavaScript optimisation that * prioritises rendering your content while loading your site's Javascript * asynchronously. Turning on Rocket Loader will immediately improve a web page's * rendering time sometimes measured as Time to First Paint (TTFP), and also the * `window.onload` time (assuming there is JavaScript on the page). This can have a * positive impact on your Google search ranking. When turned on, Rocket Loader * will automatically defer the loading of all Javascript referenced in your HTML, * with no configuration required. Refer to * [Understanding Rocket Loader](https://support.cloudflare.com/hc/articles/200168056) * for more information. */ get(params, options) { const { zone_id } = params; return this._client.get(`/zones/${zone_id}/settings/rocket_loader`, options)._thenUnwrap((obj) => obj.result); } } (function (RocketLoaderResource) { })(RocketLoaderResource || (RocketLoaderResource = {})); //# sourceMappingURL=rocket-loader.mjs.map