UNPKG

@altostra/core

Version:

Core library for shared types and logic

10 lines (9 loc) 577 B
import type { Maybe } from "../../../common/Maybe"; import type { CloudFormationCustomResourcesType } from "../../Resources/CloudFormationCustomResources"; import type { ResourceHelper } from "../ResourceHelper"; export declare function getDefaultAwsCustomResourceProperties(awsType: string): object; export declare function getAwsCustomResourcesUtilities(helper: ResourceHelper<CloudFormationCustomResourcesType>): AwsCustomResourcesUtils; export interface AwsCustomResourcesUtils { templateByAWSType(awsType: string, name?: string): void; getIcon(): Maybe<string>; }