UNPKG

429 BTypeScriptView Raw
1import { AppMeshProxyConfigurationConfigProps } from './app-mesh-proxy-configuration';
2import { ProxyConfiguration } from './proxy-configuration';
3/**
4 * The base class for proxy configurations.
5 */
6export declare class ProxyConfigurations {
7 /**
8 * Constructs a new instance of the ProxyConfiguration class.
9 */
10 static appMeshProxyConfiguration(props: AppMeshProxyConfigurationConfigProps): ProxyConfiguration;
11}