Interface for an application layer generator.

interface ApplicationLayerGenerator {
    strategyIdentifier: string;
    generateApplicationLayer(
        context: GenerationContext,
    ): Promise<LayerArtifact>;
}

Implemented by

Properties

strategyIdentifier: string

Methods