slavery-js
Version:
A simple clustering app that allows you to scale an application on multiple thread, containers or machines
14 lines (12 loc) • 331 B
TypeScript
type EntryOptions = {
host?: string;
port?: number;
timeout?: number;
retries?: number;
autoScale?: boolean;
number_of_nodes?: number;
max_number_of_nodes?: number;
min_number_of_nodes?: number;
};
declare const entry: (entryOptions: EntryOptions) => ProxyConstructor;
export { entry as default };