UNPKG

cloudflare

Version:

The official TypeScript library for the Cloudflare API

20 lines 747 B
"use strict"; // File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. Object.defineProperty(exports, "__esModule", { value: true }); exports.Content = void 0; const resource_1 = require("../../resource.js"); class Content extends resource_1.APIResource { /** * Fetches the content of a snippet belonging to the zone. */ get(snippetName, params, options) { const { zone_id } = params; return this._client.get(`/zones/${zone_id}/snippets/${snippetName}/content`, { ...options, headers: { Accept: 'multipart/form-data', ...options?.headers }, __binaryResponse: true, }); } } exports.Content = Content; //# sourceMappingURL=content.js.map