UNPKG

@altostra/core

Version:

Core library for shared types and logic

6 lines (5 loc) 281 B
export declare type DeploymentStrategy = 'Auto' | 'Download' | 'Manual'; export interface DeploymentSettings { deploymentStrategy: DeploymentStrategy; } export declare const isDeploymentSettings: import("@altostra/type-validations").ObjectOfTypeValidation<DeploymentSettings>;