release-please
Version:
generate release PRs based on the conventionalcommits.org spec
14 lines (13 loc) • 460 B
TypeScript
import { Logger } from '../../util/logger';
import { DefaultUpdater } from '../default';
/**
* Updates `Cargo.toml` manifests, preserving formatting and comments.
*/
export declare class CargoToml extends DefaultUpdater {
/**
* Given initial file contents, return updated contents.
* @param {string} content The initial content
* @returns {string} The updated content
*/
updateContent(content: string, logger?: Logger): string;
}