UNPKG

@sap/adp-abap

Version:

abap service for all yeoman generators

11 lines (10 loc) 555 B
import { Credentials, FlpConfig, Project as ProjectData } from "../models/Types"; import type { Manifest as ManifestModel } from "@sap-ux/project-access"; export default class Manifest { private static credentials; static setCredentials(credentials: Credentials): void; static get(projectData: ProjectData): Promise<any>; static getManifestInboundIds(manifest: ManifestModel): string[]; static getAdpProjectManifestInboundId(projectPath: string): string | undefined; static getFlpConfig(projectPath: string): Promise<FlpConfig>; }