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

6 lines (5 loc) 277 B
import { ControllerMeta } from "../constants/types/controller-meta.type"; export interface ICodeGenerator { generate(controller: ControllerMeta, outputDir: string, tempFolder?: string): void; deleteTypescriptFile(controller: ControllerMeta, outputDir: string): void; }