cloudflare
Version:
The official TypeScript library for the Cloudflare API
28 lines • 1.2 kB
JavaScript
// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
import { APIResource } from "../../resource.mjs";
import * as ContentAPI from "./content.mjs";
import { Content } from "./content.mjs";
import * as PDFAPI from "./pdf.mjs";
import { PDF } from "./pdf.mjs";
import * as ScrapeAPI from "./scrape.mjs";
import { Scrape } from "./scrape.mjs";
import * as ScreenshotAPI from "./screenshot.mjs";
import { Screenshot } from "./screenshot.mjs";
import * as SnapshotAPI from "./snapshot.mjs";
import { Snapshot } from "./snapshot.mjs";
export class BrowserRendering extends APIResource {
constructor() {
super(...arguments);
this.content = new ContentAPI.Content(this._client);
this.pdf = new PDFAPI.PDF(this._client);
this.scrape = new ScrapeAPI.Scrape(this._client);
this.screenshot = new ScreenshotAPI.Screenshot(this._client);
this.snapshot = new SnapshotAPI.Snapshot(this._client);
}
}
BrowserRendering.Content = Content;
BrowserRendering.PDF = PDF;
BrowserRendering.Scrape = Scrape;
BrowserRendering.Screenshot = Screenshot;
BrowserRendering.Snapshot = Snapshot;
//# sourceMappingURL=browser-rendering.mjs.map