import { Dependency, TechnologyElement } from "./ProjectAnalysis"; /** * Instance of a technology stack. This is a technology that needs to be built. * Ordering is important. * Like Spring | Node */ export interface TechnologyStack extends TechnologyElement { readonly projectName?: string; readonly dependencies?: Dependency[]; } export declare function isTechnologyStack(e: TechnologyElement): e is TechnologyStack;