cloudflare
Version:
The official TypeScript library for the Cloudflare API
30 lines (25 loc) • 753 B
text/typescript
// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
import { APIResource } from '../../../../resource';
import * as ConfigAPI from './config';
import {
CmbConfig,
Config,
ConfigCreateParams,
ConfigDeleteParams,
ConfigDeleteResponse,
ConfigGetParams,
} from './config';
export class Cmb extends APIResource {
config: ConfigAPI.Config = new ConfigAPI.Config(this._client);
}
Cmb.Config = Config;
export declare namespace Cmb {
export {
Config as Config,
type CmbConfig as CmbConfig,
type ConfigDeleteResponse as ConfigDeleteResponse,
type ConfigCreateParams as ConfigCreateParams,
type ConfigDeleteParams as ConfigDeleteParams,
type ConfigGetParams as ConfigGetParams,
};
}