node-jt400
Version:
JT400 (IBM Toolbox) for NodeJS
10 lines (9 loc) • 447 B
TypeScript
import { Connection } from './lib/connection.types';
import { InMemoryConnection } from './lib/inMemoryConnection';
export * from './lib/baseConnection.types';
export * from './lib/connection.types';
export * from './lib/ifs/types';
export { InMemoryConnection };
export declare function pool(config?: {}): Connection;
export declare function connect(config?: {}): Promise<Connection>;
export declare function useInMemoryDb(): InMemoryConnection;