keep-a-changelog
Version:
Parse and generate changelogs following the [keepachangelog](https://keepachangelog.com/) format.
18 lines (17 loc) • 520 B
TypeScript
/**
* Temporary URLPattern shim
* @see https://github.com/denoland/dnt/issues/336
*/
declare class URLPatternShim {
private readonly pattern;
constructor(pattern: string | RegExp);
test(url: string): boolean;
}
export interface Settings {
pattern: URLPatternShim;
tagLink: (url: string, tag: string, previous?: string, head?: string) => string;
head: string;
}
export default function getSettingsForURL(url: string): Settings | undefined;
export declare const settings: Settings[];
export {};