@vidavidorra/create-project
Version:
Interactively create a GitHub project
16 lines (15 loc) • 546 B
TypeScript
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 };