changelog-guru
Version:
Git changelog generator
36 lines (35 loc) • 1.72 kB
TypeScript
export declare const capitalize: (text: string) => string;
export declare const code: (text: string, lang?: string) => string;
export declare const commit: (text: string, url: string) => string;
export declare const contributors: (links: string[]) => string;
export declare const details: (text: string) => string;
export declare const header: (level: number) => string;
export declare const headerLevel: (level: number) => number;
export declare const image: (text: string, img: string, url: string) => string;
export declare const license: (type: string) => string;
export declare const line: () => string;
export declare const link: (text: string, url: string) => string;
export declare const list: (text: string) => string;
export declare const strong: (text: string) => string;
export declare const summary: (text: string) => string;
export declare const title: (text: string, level?: number) => string;
export declare const wrap: (text?: string) => string;
declare const _default: {
capitalize: (text: string) => string;
code: (text: string, lang?: string) => string;
commit: (text: string, url: string) => string;
contributors: (links: string[]) => string;
details: (text: string) => string;
header: (level: number) => string;
headerLevel: (level: number) => number;
image: (text: string, img: string, url: string) => string;
license: (type: string) => string;
line: () => string;
link: (text: string, url: string) => string;
list: (text: string) => string;
strong: (text: string) => string;
summary: (text: string) => string;
title: (text: string, level?: number) => string;
wrap: (text?: string | undefined) => string;
};
export default _default;