n8n
Version:
n8n Workflow Automation Tool
8 lines (7 loc) • 443 B
TypeScript
import type { RedisServiceCommandObject } from '../redis/RedisServiceCommands';
export interface RedisServiceCommandLastReceived {
[date: string]: Date;
}
export declare function messageToRedisServiceCommandObject(messageString: string): RedisServiceCommandObject | undefined;
export declare function debounceMessageReceiver(message: RedisServiceCommandObject, timeout?: number): boolean;
export declare function getOsCpuString(): string;