keep-a-changelog
Version:
Node package to parse and generate changelogs following the [keepachangelog](https://keepachangelog.com/) format.
18 lines • 558 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 {};
//# sourceMappingURL=settings.d.ts.map