database-builder
Version:
Library to assist in creating and maintaining SQL commands.
12 lines (11 loc) • 363 B
TypeScript
import { ValueTypeToParse } from "../core/utils";
export interface DependencyListSimpleModel {
index: number;
value: ValueTypeToParse | Array<ValueTypeToParse>;
reference: any;
}
export declare const DEPENDENCY_LIST_SIMPLE_COLUMNS: {
INDEX: string;
VALUE: string;
REFERENCE: (tableName: string, keyColumn: string) => string;
};