n8n-nodes-arubacentralnextgen
Version:
n8n community node for Aruba Central NextGen API integration with modern monitoring and management capabilities
14 lines (13 loc) • 589 B
TypeScript
export declare function isDebugMode(executeFunctions: any): boolean;
export declare function debug(message: string, data?: any, executeFunctions?: any): void;
export declare function info(message: string, data?: any): void;
export declare function warn(message: string, data?: any): void;
export declare function error(message: string, error?: Error | unknown): void;
export declare const logger: {
debug: typeof debug;
info: typeof info;
warn: typeof warn;
error: typeof error;
};
export declare const logDebug: typeof debug;
export declare const logWarning: typeof warn;