UNPKG

@vidavidorra/create-project

Version:
16 lines (15 loc) 546 B
import { type Options } from '../../options.js'; type Config = Record<'codeCoverage' | 'conventionalCommits' | 'eslint' | 'license' | 'nodeJsVersion' | 'npmDownloads' | 'npmVersion' | 'prettier' | 'renovate' | 'semanticRelease' | 'xo', { title: string; url: string; link: string; }>; declare class Badge { private readonly _options; constructor(options: Options); markdown(key: keyof Config): string; get badges(): Array<keyof Config>; private get config(); private get gitHubRepository(); } export { Badge };