exthos
Version:
stream processing in nodejs using the power of golang
24 lines • 973 B
TypeScript
import "dotenv/config";
import { Stream } from "./stream/stream.js";
import { Engine } from "./engine/engine.js";
import { engine, from } from "./hlapis/index.js";
declare const exthos: {
engine: Engine;
from: (inputs_0: import("./types/inputs.js").TInput, ...inputs_1: import("./types/inputs.js").TInput[]) => Pick<import("./hlapis/route.js").Route, "batchInput" | "to" | "_via"> & {
then: (value: (rt: Pick<import("./hlapis/route.js").Route, "batchInput" | "to" | "_via">) => void) => {
catch: (value: (e: Error) => void) => {
finally: (value: () => void) => void;
};
} & {
finally: (value: () => void) => void;
};
catch: (value: (e: Error) => void) => {
finally: (value: () => void) => void;
};
};
Engine: typeof Engine;
Stream: typeof Stream;
};
export { Stream, Engine, engine, from };
export default exthos;
//# sourceMappingURL=index.d.ts.map