cloudflare
Version:
The official TypeScript library for the Cloudflare API
20 lines (15 loc) • 598 B
text/typescript
// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
import { APIResource } from '../../../../resource';
import * as CurrentsAPI from './currents';
import { CurrentGetParams, CurrentGetResponse, Currents } from './currents';
export class Aggregates extends APIResource {
currents: CurrentsAPI.Currents = new CurrentsAPI.Currents(this._client);
}
Aggregates.Currents = Currents;
export declare namespace Aggregates {
export {
Currents as Currents,
type CurrentGetResponse as CurrentGetResponse,
type CurrentGetParams as CurrentGetParams,
};
}