@altostra/core
Version:
Core library for shared types and logic
12 lines (11 loc) • 479 B
TypeScript
import type { CloudFormationValue } from "../common";
export declare const FN_EQUALS = "Fn::Equals";
export declare type EqualsKey = typeof FN_EQUALS;
export interface Equals {
'Fn::Equals': [
value1: CloudFormationValue,
value2: CloudFormationValue
];
}
export declare const isEquals: import("@altostra/type-validations").ObjectOfTypeValidation<Equals>;
export declare function mkEquals(value1: CloudFormationValue, value2: CloudFormationValue): Equals;