mirror of
https://github.com/dbgate/dbgate
synced 2024-11-08 04:35:58 +00:00
8 lines
149 B
TypeScript
8 lines
149 B
TypeScript
import types from "dbgate-types";
|
|
|
|
declare function getDriver(
|
|
connection: string | { engine: string }
|
|
): types.EngineDriver;
|
|
|
|
export = getDriver;
|