actionhero
Version:
The reusable, scalable, and quick node.js API server for stateless and stateful applications
19 lines (18 loc) • 453 B
TypeScript
import { Action } from "./../index";
export declare class Status extends Action {
constructor();
run({ connection }: {
connection: any;
}): Promise<{
id: string;
actionheroVersion: any;
name: any;
description: any;
version: any;
uptime: number;
consumedMemoryMB: number;
resqueTotalQueueLength: number;
nodeStatus: string;
problems: string[];
}>;
}