12 lines
624 B
TypeScript
12 lines
624 B
TypeScript
import type { IDeploymentStrategyRef, IEnvironmentRef } from '../../../interfaces/generated/aws-appconfig-interfaces.generated';
|
|
import type { IDeploymentStrategy } from '../deployment-strategy';
|
|
import type { IEnvironment } from '../environment';
|
|
/**
|
|
* Converts an IEnvironmentRef to IEnvironment, with runtime type checking
|
|
*/
|
|
export declare function toIEnvironment(environment: IEnvironmentRef): IEnvironment;
|
|
/**
|
|
* Converts an IDeploymentStrategyRef to IDeploymentStrategy, with runtime type checking
|
|
*/
|
|
export declare function toIDeploymentStrategy(deploymentStrategy: IDeploymentStrategyRef): IDeploymentStrategy;
|