patch-pulse
Version:
Check for outdated npm dependencies
34 lines • 1.1 kB
TypeScript
/**
* Creates a centered bordered box with a title
* @param title - The title to display in the box
* @param width - The width of the box
* @returns The centered bordered box with the title
*/
export declare function createCenteredBox(title: string, width: number): string;
/**
* Displays the "Made with love" message
*/
export declare function displayMadeWithLove(): void;
/**
* Displays the help message
*/
export declare function displayHelp(): void;
/**
* Displays the version information
*/
export declare function displayVersion(): void;
/**
* Displays the license information
*/
export declare function displayLicense(): void;
/**
* Displays a message when an update is available
* @param currentVersion - The current version of the package
* @param latestVersion - The latest version of the package
*/
export declare function displayUpdateAvailable(currentVersion: string, latestVersion: string): void;
export declare function displayThankYouMessage(): void;
export * from './cli';
export * from './display';
export * from './summary';
//# sourceMappingURL=index.d.ts.map