cloudflare/cloudflare-typescript

Public

mirrored fromhttps://github.com/cloudflare/cloudflare-typescriptAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
3d2fc132d5e8a5c08805fa9b1df9c63e2db466eb

Branches

Tags

  • No tags available.
0Branches0Tags
Go to file
Add file
Code

Clone

HTTPS

Download ZIP

src/resource.ts

11lines · modecode

1// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
2
3import type { Cloudflare } from './index';
4
5export class APIResource {
6 protected _client: Cloudflare;
7
8 constructor(client: Cloudflare) {
9 this._client = client;
10 }
11}
12