/*! * Copyright (c) Microsoft Corporation and contributors. All rights reserved. * Licensed under the MIT License. */ import type { BundleComparison } from "../BundleBuddyTypes"; /** * Generates the comment message for all Bundle Diffs with the commit hash of the baseline on the footer * * @param bundleDiff - bundle difference * @param baselineCommit - Commit hash for the baseline */ export declare function getCommentForBundleDiff(bundleComparison: BundleComparison[], baselineCommit: string): string; /** * Gets a simple HTML message with the footer for the baseline commit * * @param message - the string to type as a message * @param baselineCommit - Commit hash for the baseline */ export declare function getSimpleComment(message: string, baselineCommit: string): string; //# sourceMappingURL=getCommentForBundleDiff.d.ts.map