UNPKG

node-jt400

Version:
10 lines (9 loc) 447 B
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;