nodejs-jdbc
Version:
JDBC wrapper for Node
12 lines (11 loc) • 530 B
TypeScript
/// <reference types="node" />
import { EventEmitter } from 'node:events';
export declare function isJvmCreated(): boolean;
export declare function addOption(option: any): void;
export declare function setupClasspath(dependencyArr: any): void;
export declare function shutdownJVM(): Promise<void>;
export declare function getInstance(): any;
export declare function getClasspath(): any;
export declare function getOptions(): any;
export declare function getOnJvmCreated(): any;
export declare const events: EventEmitter<[never]>;