UNPKG

@atomist/sdm-pack-spring

Version:

Atomist software delivery machine extension pack for Spring and Spring Boot applications

13 lines (12 loc) 403 B
import { Project } from "@atomist/automation-client"; import { BoundedElement } from "../../util/BoundedElement"; export interface PackageInfo extends BoundedElement { fqn: string; } /** * Return the imports already in this project * @param {Project} p * @param {string} path * @return {Promise<Import[]>} */ export declare function packageInfo(p: Project, path: string): Promise<PackageInfo>;