actionhero
Version:
actionhero.js is a multi-transport API Server with integrated cluster capabilities and delayed tasks
40 lines (39 loc) • 1.07 kB
TypeScript
export declare const DEFAULT: {
redis: (config: any) => {
enabled: boolean;
_toExpand: boolean;
client: {
konstructor: any;
args: {
port: string | number;
host: string;
password: string;
db: number;
retryStrategy: (times: any) => number;
}[];
buildNew: boolean;
};
subscriber: {
konstructor: any;
args: {
port: string | number;
host: string;
password: string;
db: number;
retryStrategy: (times: any) => number;
}[];
buildNew: boolean;
};
tasks: {
konstructor: any;
args: {
port: string | number;
host: string;
password: string;
db: number;
retryStrategy: (times: any) => number;
}[];
buildNew: boolean;
};
};
};