UNPKG

arky-js

Version:

**Arky.js** is a powerful, annotation-based framework for building serverless applications on **AWS Lambda and API Gateway**. Inspired by Angular and NestJS, Arky.js simplifies serverless development by providing decorators for defining modules, controlle

13 lines (12 loc) 530 B
import { PlatformType } from "../constants/enums/platform-type.enum"; import { AwsBundler } from "./aws/aws-bundler"; import { CdkGenerator } from "./aws/cdk-generator"; import { LambdaCodeGenerator } from "./aws/lambda-code-generator"; export declare class PlatformFactory { private platformType; constructor(platformType: PlatformType); static getInstance(platformType: PlatformType): PlatformFactory; getCodeGenerator(): LambdaCodeGenerator; getBundler(): AwsBundler; getIacGenerator(): CdkGenerator; }