@altostra/core
Version:
Core library for shared types and logic
9 lines (8 loc) • 401 B
TypeScript
import type { CloudFormationValue } from "./common";
export declare const FN_LENGTH = "Fn::Length";
export declare type LengthKey = typeof FN_LENGTH;
export interface Length {
'Fn::Length': CloudFormationValue<any[]>;
}
export declare const isLength: import("@altostra/type-validations").ObjectOfTypeValidation<Length>;
export declare function mkLength(array: CloudFormationValue<any[]>): Length;