12 lines
439 B
TypeScript
12 lines
439 B
TypeScript
import type { AppMeshProxyConfigurationConfigProps } from './app-mesh-proxy-configuration';
|
|
import type { ProxyConfiguration } from './proxy-configuration';
|
|
/**
|
|
* The base class for proxy configurations.
|
|
*/
|
|
export declare class ProxyConfigurations {
|
|
/**
|
|
* Constructs a new instance of the ProxyConfiguration class.
|
|
*/
|
|
static appMeshProxyConfiguration(props: AppMeshProxyConfigurationConfigProps): ProxyConfiguration;
|
|
}
|