UNPKG

cloudflare

Version:

The official TypeScript library for the Cloudflare API

26 lines 1.62 kB
import { APIResource } from "../../resource.js"; import * as ContentAPI from "./content.js"; import { Content, ContentCreateParams, ContentCreateResponse } from "./content.js"; import * as PDFAPI from "./pdf.js"; import { PDF, PDFCreateParams } from "./pdf.js"; import * as ScrapeAPI from "./scrape.js"; import { Scrape, ScrapeCreateParams, ScrapeCreateResponse } from "./scrape.js"; import * as ScreenshotAPI from "./screenshot.js"; import { Screenshot, ScreenshotCreateParams, ScreenshotCreateResponse } from "./screenshot.js"; import * as SnapshotAPI from "./snapshot.js"; import { Snapshot, SnapshotCreateParams, SnapshotCreateResponse } from "./snapshot.js"; export declare class BrowserRendering extends APIResource { content: ContentAPI.Content; pdf: PDFAPI.PDF; scrape: ScrapeAPI.Scrape; screenshot: ScreenshotAPI.Screenshot; snapshot: SnapshotAPI.Snapshot; } export declare namespace BrowserRendering { export { Content as Content, type ContentCreateResponse as ContentCreateResponse, type ContentCreateParams as ContentCreateParams, }; export { PDF as PDF, type PDFCreateParams as PDFCreateParams }; export { Scrape as Scrape, type ScrapeCreateResponse as ScrapeCreateResponse, type ScrapeCreateParams as ScrapeCreateParams, }; export { Screenshot as Screenshot, type ScreenshotCreateResponse as ScreenshotCreateResponse, type ScreenshotCreateParams as ScreenshotCreateParams, }; export { Snapshot as Snapshot, type SnapshotCreateResponse as SnapshotCreateResponse, type SnapshotCreateParams as SnapshotCreateParams, }; } //# sourceMappingURL=browser-rendering.d.ts.map