UNPKG

powerplatform-review-tool

Version:

Evaluate Power Platform solution zip files based on best practice patterns

16 lines 547 B
/** * Simple console-based logger * Replaces pino to avoid worker thread issues in bundled packages */ declare const logger: { info: (message: string, ...args: any[]) => void; warn: (message: string, ...args: any[]) => void; error: (message: string, ...args: any[]) => void; debug: (message: string, ...args: any[]) => void; }; /** * Helper function to log errors with consistent formatting */ export declare function logError(error: unknown, message: string): void; export default logger; //# sourceMappingURL=logger.d.ts.map