UNPKG

cloudflare

Version:

The official TypeScript library for the Cloudflare API

46 lines (40 loc) 1.5 kB
// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. import { APIResource } from '../../resource'; import * as SmartRoutingAPI from './smart-routing'; import { SmartRouting, SmartRoutingEditParams, SmartRoutingEditResponse, SmartRoutingGetParams, SmartRoutingGetResponse, } from './smart-routing'; import * as TieredCachingAPI from './tiered-caching'; import { TieredCaching, TieredCachingEditParams, TieredCachingEditResponse, TieredCachingGetParams, TieredCachingGetResponse, } from './tiered-caching'; export class Argo extends APIResource { smartRouting: SmartRoutingAPI.SmartRouting = new SmartRoutingAPI.SmartRouting(this._client); tieredCaching: TieredCachingAPI.TieredCaching = new TieredCachingAPI.TieredCaching(this._client); } Argo.SmartRouting = SmartRouting; Argo.TieredCaching = TieredCaching; export declare namespace Argo { export { SmartRouting as SmartRouting, type SmartRoutingEditResponse as SmartRoutingEditResponse, type SmartRoutingGetResponse as SmartRoutingGetResponse, type SmartRoutingEditParams as SmartRoutingEditParams, type SmartRoutingGetParams as SmartRoutingGetParams, }; export { TieredCaching as TieredCaching, type TieredCachingEditResponse as TieredCachingEditResponse, type TieredCachingGetResponse as TieredCachingGetResponse, type TieredCachingEditParams as TieredCachingEditParams, type TieredCachingGetParams as TieredCachingGetParams, }; }