/// /// declare module 'chargebee' { export interface Configuration { domain?: string; product_catalog_version?: ProductCatalogVersionEnum; chargebee_response_schema_type?: ChargebeeResponseSchemaTypeEnum; } export namespace Configuration { export class ConfigurationResource { list( headers?: ChargebeeRequestHeader, ): Promise>; } export interface ListResponse { configurations: Configuration[]; } // REQUEST PARAMS //--------------- } }