UNPKG

@softwareventures/maintain-project

Version:

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

17 lines (16 loc) 605 B
/** A subset of ProjectOptions used by the guessCopyrightHolder function. */ export interface GuessCopyrightHolderOptions { readonly license?: undefined | { readonly copyrightHolder?: string | undefined; }; readonly npmPackage?: undefined | { readonly scope?: string | undefined; }; readonly gitHost?: { readonly user?: string | undefined; } | undefined | object; readonly author?: undefined | { readonly name?: string | undefined; }; } export declare function guessCopyrightHolder(options: GuessCopyrightHolderOptions): string | undefined;