@altostra/core
Version:
Core library for shared types and logic
10 lines (9 loc) • 339 B
TypeScript
export declare const FN_TRANSFORM = "Fn::Transform";
export declare type TransformKey = typeof FN_TRANSFORM;
export interface Transform {
'Fn::Transform': {
Name: string;
Parameters: Record<string, any>;
};
}
export declare const isTransform: import("@altostra/type-validations").ObjectOfTypeValidation<Transform>;