cloudflare/cloudflare-typescript

Public

mirrored from https://github.com/cloudflare/cloudflare-typescriptAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
2b089387c0f4f38df46c24f2c2b3d0da86d3d8d2

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.
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