@kubernetes-models/argo-cd
Version:
10 lines (9 loc) • 587 B
TypeScript
/**
* ApplicationConditionType represents type of application condition. Type name has following convention:
* prefix "Error" means error condition
* prefix "Warning" means warning condition
* prefix "Info" means informational condition
*/
export type IApplicationConditionType = string;
export type ApplicationConditionType = IApplicationConditionType;
export type { IApplicationConditionType as IComGithubArgoprojArgoCdV3PkgApisApplicationV1alpha1ApplicationConditionType, ApplicationConditionType as ComGithubArgoprojArgoCdV3PkgApisApplicationV1alpha1ApplicationConditionType };