UNPKG

@re-shell/cli

Version:

Full-stack development platform uniting microservices and microfrontends. Build complete applications with .NET (ASP.NET Core Web API, Minimal API), Java (Spring Boot, Quarkus, Micronaut, Vert.x), Rust (Actix-Web, Warp, Rocket, Axum), Python (FastAPI, Dja

31 lines (30 loc) 1.65 kB
/** * Swift Backend Template Base Generator * Shared functionality for all Swift web frameworks */ import { BackendTemplateGenerator } from '../shared/backend-template-generator'; export declare abstract class SwiftBackendGenerator extends BackendTemplateGenerator { constructor(framework: string); protected generateLanguageFiles(projectPath: string, options: any): Promise<void>; protected generatePackageSwift(projectPath: string, options: any): Promise<void>; protected generateSwiftLint(projectPath: string): Promise<void>; protected generateTestStructure(projectPath: string, options: any): Promise<void>; protected generateHealthCheck(projectPath: string): Promise<void>; protected generateAPIDocs(projectPath: string): Promise<void>; protected generateDockerFiles(projectPath: string, options: any): Promise<void>; protected generateDocumentation(projectPath: string, options: any): Promise<void>; protected getLanguageSpecificIgnorePatterns(): string[]; protected getLanguagePrerequisites(): string; protected getInstallCommand(): string; protected getDevCommand(): string; protected getProdCommand(): string; protected getTestCommand(): string; protected getCoverageCommand(): string; protected getLintCommand(): string; protected getBuildCommand(): string; protected getSetupAction(): string; protected abstract getFrameworkDependencies(): string[]; protected abstract getTargetDependencies(): string; protected abstract getTestDependencies(): string; protected abstract generateFrameworkFiles(projectPath: string, options: any): Promise<void>; }