@ts-for-gir/reporter
Version:
Problem reporting and comprehensive generation analysis for ts-for-gir
14 lines (13 loc) • 318 B
text/typescript
/**
* Reporter configuration
*/
export interface ReporterConfig {
/** Enable reporter functionality */
enabled: boolean;
/** Enable verbose logging to console */
verbose: boolean;
/** Module name for this reporter instance */
moduleName: string;
/** Output file path for the report */
outputPath?: string;
}