UNPKG

@softwareventures/maintain-project

Version:

Automatically create and maintain TypeScript projects with standard settings for Software Ventures Limited

13 lines (12 loc) 515 B
export interface InitOptions { readonly scope?: string | undefined; readonly name?: string | undefined; readonly githubOwner?: string | undefined; readonly githubProject?: string | undefined; readonly webapp?: boolean | undefined; readonly authorName?: string | undefined; readonly authorEmail?: string | undefined; readonly license?: string | undefined; readonly copyrightHolder?: string | undefined; } export declare function cliInit(path: string, options: InitOptions): void;