cloudflare/cloudflare-typescript

Public
CodeCommitsIssuesPull requestsActionsInsightsSecurity
aa9ec70aaed47d05ae9752283de16fab9b451c58

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