UNPKG

@goldstack/infra

Version:

Utilities for defining infrastructure for npm packages.

10 lines 282 B
export interface TerraformState { [propName: string]: any; } export interface DeploymentState { name: string; terraform?: TerraformState; [propName: string]: any; } export type DeploymentsState = DeploymentState[]; //# sourceMappingURL=deploymentStatesTypes.d.ts.map