UNPKG

@armyknife/backstage-github-template

Version:

GitHub repository template creation for Backstage

12 lines (11 loc) 397 B
export interface GitHubTemplateOptions { name: string; title: string; description: string; owner: string; type?: string; tags?: string[]; } export declare function getGitHubRepositoryTemplate(options: GitHubTemplateOptions): string; export declare function saveTemplateToFile(template: string, filePath: string): void; export declare function getDefaultTemplate(): string;