UNPKG

1.27 kBTypeScriptView Raw
1import * as awsTags from './aws/aws-tags';
2import * as cloudFormationCalls from './aws/cloudformation-calls';
3import * as ec2Calls from './aws/ec2-calls';
4import * as s3Calls from './aws/s3-calls';
5import * as bindPhaseModule from './common/bind-phase';
6import * as checkPhaseModule from './common/check-phase';
7import * as deletePhasesModule from './common/delete-phases';
8import * as deployPhaseModule from './common/deploy-phase';
9import * as preDeployPhaseModule from './common/pre-deploy-phase';
10import * as taggingModule from './common/tagging';
11import * as handlebarsUtils from './util/handlebars-utils';
12import * as utilModule from './util/util';
13export declare const checkPhase: typeof checkPhaseModule;
14export declare const bindPhase: typeof bindPhaseModule;
15export declare const deletePhases: typeof deletePhasesModule;
16export declare const deployPhase: typeof deployPhaseModule;
17export declare const preDeployPhase: typeof preDeployPhaseModule;
18export declare const tagging: typeof taggingModule;
19export declare const awsCalls: {
20 cloudFormation: typeof cloudFormationCalls;
21 ec2: typeof ec2Calls;
22 s3: typeof s3Calls;
23 tags: typeof awsTags;
24};
25export declare const handlebars: typeof handlebarsUtils;
26export declare const util: typeof utilModule;