UNPKG

dbgate-tools

Version:

Auxiliary tools for other DbGate packages.

10 lines (9 loc) 375 B
/// <reference types="lodash" /> import type { TableInfo } from 'dbgate-types'; export declare function prepareTableForImport(table: TableInfo): TableInfo; interface TransformColumnDefinition { src: string; dst: string; } export declare function transformRowUsingColumnMap(row: any, columns: TransformColumnDefinition[]): import("lodash").Dictionary<any>; export {};