@grouparoo/core
Version:
The Grouparoo Core
60 lines (59 loc) • 1.64 kB
TypeScript
declare const namespace = "redis";
declare module "actionhero" {
interface ActionheroConfigInterface {
[namespace]: ReturnType<typeof DEFAULT[typeof namespace]>;
}
}
export declare const DEFAULT: {
redis: () => {
scanCount: number;
stopTimeout: number;
_toExpand: boolean;
client: {
konstructor: any;
args: {
port: string;
host: string;
username: string;
password: string;
db: number;
tls: {
rejectUnauthorized: boolean;
};
retryStrategy: (times: number) => number;
}[];
buildNew: boolean;
};
subscriber: {
konstructor: any;
args: {
port: string;
host: string;
username: string;
password: string;
db: number;
tls: {
rejectUnauthorized: boolean;
};
retryStrategy: (times: number) => number;
}[];
buildNew: boolean;
};
tasks: {
konstructor: any;
args: {
port: string;
host: string;
username: string;
password: string;
db: number;
tls: {
rejectUnauthorized: boolean;
};
retryStrategy: (times: number) => number;
}[];
buildNew: boolean;
};
};
};
export {};