cloudflare
Version:
The official TypeScript library for the Cloudflare API
56 lines (47 loc) • 2.03 kB
text/typescript
// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
import { APIResource } from '../../resource';
import * as ContentAPI from './content';
import { Content, ContentCreateParams, ContentCreateResponse } from './content';
import * as PDFAPI from './pdf';
import { PDF, PDFCreateParams } from './pdf';
import * as ScrapeAPI from './scrape';
import { Scrape, ScrapeCreateParams, ScrapeCreateResponse } from './scrape';
import * as ScreenshotAPI from './screenshot';
import { Screenshot, ScreenshotCreateParams, ScreenshotCreateResponse } from './screenshot';
import * as SnapshotAPI from './snapshot';
import { Snapshot, SnapshotCreateParams, SnapshotCreateResponse } from './snapshot';
export class BrowserRendering extends APIResource {
content: ContentAPI.Content = new ContentAPI.Content(this._client);
pdf: PDFAPI.PDF = new PDFAPI.PDF(this._client);
scrape: ScrapeAPI.Scrape = new ScrapeAPI.Scrape(this._client);
screenshot: ScreenshotAPI.Screenshot = new ScreenshotAPI.Screenshot(this._client);
snapshot: SnapshotAPI.Snapshot = new SnapshotAPI.Snapshot(this._client);
}
BrowserRendering.Content = Content;
BrowserRendering.PDF = PDF;
BrowserRendering.Scrape = Scrape;
BrowserRendering.Screenshot = Screenshot;
BrowserRendering.Snapshot = 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,
};
}