anyig
Version:
A powerful and extensible tool for generating ignore files for various development tools and environments
25 lines • 551 B
TypeScript
export interface IgnoreTemplate {
name: string;
filename: string;
content: string;
description?: string;
category?: string;
}
export interface CLIOptions {
multiple?: boolean;
output?: string;
template?: string;
list?: boolean;
help?: boolean;
version?: boolean;
}
export interface TemplateCategory {
name: string;
description: string;
templates: IgnoreTemplate[];
}
export interface UserChoice {
templates: string[];
outputDir?: string | undefined;
}
//# sourceMappingURL=index.d.ts.map