UNPKG

@apistudio/apim-cli

Version:

CLI for API Management Products

13 lines 841 B
/** * Copyright Super iPaaS Integration LLC, an IBM Company 2024 */ import { Metadata } from "@apic/api-model/common/Metadata.js"; import AdmZip from "adm-zip"; import fs from "fs"; declare const addDependencyAsset: (file: fs.Dirent, zip: AdmZip, fileExtension?: string) => void; declare const searchAsset: (kindToSearch: string, assetRefValueToSearch: string, projectDirPath: string) => fs.Dirent | undefined; declare const isSameAsset: (input1: Metadata, input2: Metadata) => boolean; declare const fromAssetRefValue: (assetRefValue: string) => Metadata; declare const checkAndLoadDependencies: (rootDirPath: string, projectNames: string, zipFile: AdmZip, excludeCurrProj?: boolean) => void; export { addDependencyAsset, checkAndLoadDependencies, fromAssetRefValue, isSameAsset, searchAsset, }; //# sourceMappingURL=build-helper.d.ts.map