UNPKG

@altostra/core

Version:

Core library for shared types and logic

9 lines (8 loc) 453 B
import type { CloudFormationValue } from "./common"; export declare const FN_IMPORT_VALUE = "Fn::ImportValue"; export declare type ImportValueKey = typeof FN_IMPORT_VALUE; export interface ImportValue { 'Fn::ImportValue': CloudFormationValue; } export declare const isImportValue: import("@altostra/type-validations").ObjectOfTypeValidation<ImportValue>; export declare function mkImportValue(sharedValueToImport: CloudFormationValue): ImportValue;